登录注销Twitter帐户框架iOS具有多个帐户

时间:2012-06-23 22:06:06

标签: iphone ios twitter account

我想知道如何在我的应用程序中管理iOS上的多个Twitter帐户,我知道这样:

ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

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

        ACAccount *twitterAccount = [accountsArray objectAtIndex:0];

    }
}];

我可以检索Twitter帐户,但我如何让用户选择我的应用程序中使用的Twitter帐户,并登录注销以选择其他帐户?

1 个答案:

答案 0 :(得分:-1)

帐户框架仅提供一个Twitter帐户。您可以直接使用Twitter's API来处理应用中的多个帐户,但是您无法使用iOS的内置Twitter框架。