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

アカウントフレームワークは、1つのTwitterアカウントのみを提供します。TwitterのAPIを直接操作して、アプリ内の複数のアカウントを処理することはできますが、そのためにiOSの組み込みのTwitterフレームワークを利用することはできません。

于 2012-06-23T22:36:14.100 に答える