Thursday, January 24, 2013

Twitter for iOS6 without the modal view.

Hi, I guess I got this one from some Stackoverflow question. Link against Social.framework and accounts.framework. #import <Accounts/Accounts.h> #import <Social/Social.h> ========================================= ACAccountStore *account = [[ACAccountStore alloc] init]; ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier: ACAccountTypeIdentifierTwitter];...
Hi, I found this here. Link the project against Twitter.framework and accounts.framework. #import <Twitter/Twitter.h> #import <Accounts/Accounts.h> ============================================= - (void)postToTwitter { // Create an account store object. ACAccountStore *accountStore = [[ACAccountStore alloc] init]; // Create an account type that ensures...