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];...
Thursday, January 24, 2013
Twitter for iOS5 without the modal view: (works for iOS6 as well)
Posted by Polaris on 11:29 PM
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...
Subscribe to:
Posts (Atom)
Twitter for iOS6 without the modal view.