0

我想知道如何在我的应用程序中管理 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 帐户,并登录注销以选择另一个帐户?

4

1 回答 1

-1

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

于 2012-06-23T22:36:14.100 回答