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