我正在尝试将ios 6和twitter集成在一起,以使用slcomposeviewcontroller发送一条推文,但是我不知道如何从Twitter帐户中获取用户信息。

有谁能够帮我?

最佳答案

您走在正确的轨道上,但是使用了错误的框架。社交框架中的SLComposeViewController类仅用于共享。如果要获取有关当前登录帐户的信息,则必须使用Accounts Framework

#import <Accounts/Accounts.h>


- (void)getTwitterAccountInformation
{
    ACAccountStore *accountStore = [[ACAccountStore alloc] init];
    ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

    [accountStore requestAccessToAccountsWithType:accountType options:nil completion:^(BOOL granted, NSError *error) {
        if(granted) {
            NSArray *accountsArray = [accountStore accountsWithAccountType:accountType];

            if ([accountsArray count] > 0) {
                ACAccount *twitterAccount = [accountsArray objectAtIndex:0];
                NSLog(@"%@",twitterAccount.username);
                NSLog(@"%@",twitterAccount.accountType);
            }
        }
    }];
}

09-27 13:04