1

ユーザーが何かをツイートしたら、使用したTwitterアカウントを区別する必要があります。ユーザーが電話で1つまたは複数のアカウントを構成していると考えてみましょう。

ツイートが成功した後、これを知る必要があるので、適切な場所はコールバックです。ACAccountStoreを使用してアカウントを取得しようとしましたが、最後に使用されたアカウントに関する手がかりではなく、電話で設定されたすべてのアカウントの配列を提供します(配列の順序さえも)。

TWTweetComposeViewControllerがこのアカウントを覚えているかどうか、そしてそれを取得する方法を知っている人はいますか?

ありがとう

私のコード:

if ([TWTweetComposeViewController canSendTweet])
{
    TWTweetComposeViewController *tweetSheet = 
    [[TWTweetComposeViewController alloc] init];
    [tweetSheet setInitialText:@"initial text"];
    [tweetSheet addImage:[UIImage imageNamed:image]];

    // Callback
    tweetSheet.completionHandler = ^(TWTweetComposeViewControllerResult result) {
        // if tweet was successful
        if(result == TWTweetComposeViewControllerResultDone) {

            // Get the accounts
            account = [[ACAccountStore alloc] init];
            ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

            [account requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) 
             {
                 // if access granted I populate the array
                 if (granted == YES) {
                     NSArray *arrayOfAccounts = [account accountsWithAccountType:accountType];

                     ACAccount *account1 = [arrayOfAccounts objectAtIndex:0];
                     ACAccount *account2 = [arrayOfAccounts objectAtIndex:1];

                     NSString *username1 = account1.username;
                     NSString *username2 = account2.username;

                     // Always same order
                     NSLog(userName1);
                     NSLog(userName2);

                 }
             }];

            [self furtherMethodsInCaseOfSuccessfulTweet];


        } else if(result == TWTweetComposeViewControllerResultCancelled) {
            NSLog(@"twit canceled");
        }
        [self dismissViewControllerAnimated:YES completion:nil];
    };


    [self presentModalViewController:tweetSheet animated:YES];

}
else
{
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"No tweet is possible on this device" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
    [alertView show];

}   

}

4

1 に答える 1

3

私は方法を発見しました。

TWTweetComposeViewControllerのインスタンスでユーザー名を探す代わりに、GET users / lookupを使用して、ACAccountStoreによって収集された名前をqweryします。

http://api.twitter.com/1/users/lookup.xml?screen_name=username1,username2(xml の代わりにjsonを使用)

結果を解析すると、ユーザーの最後のツイートの日付/時刻( "status"タグ)を取得できます。これで、最後に使用されたアカウントがわかります。さらに、コンソールでqweryの結果をテストできます。

@theSeanCookに感謝します

于 2012-07-20T08:54:34.557 に答える