私は自分のアプリで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アカウントを選択し、ログアウトして別のアカウントを選択できるようにするにはどうすればよいですか?