Twitter アカウントにアクセスしようとしていますが、このコードは途中で停止していますaccountTypeWithAccountTypeIdentifier
。
私のコードは次のようになります。iOS 6 を実行しています。
#import <Accounts/Accounts.h>
#import <Social/Social.h>
#import <Twitter/Twitter.h>
NSLog(@"1");
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
NSLog(@"2");
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
NSLog(@"3");
[accountStore requestAccessToAccountsWithType:accountType options:nil completion:^(BOOL granted, NSError *error) {
NSLog(@"5");
}];
NSLog(@"4");
NSLogs 1 と 2 を取得しました。これは、accountTypeWithAccountTypeIdentifier 行が返されていないことを意味します。メインスレッドとバックグラウンドスレッドの両方でこれを実行しようとしましたが、役に立ちませんでした。