我试图在我的iOS设备上使用Twitter API。 要访问当前登录的Twitter帐户,我使用以下代码:
ACAccountStore *account = [[ACAccountStore alloc] init];
ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:
ACAccountTypeIdentifierTwitter];
[account requestAccessToAccountsWithType:accountType options:nil
completion:^(BOOL granted, NSError *error)
这在我的iPhone上运行得非常好,并且授予YES。但是,当我尝试在我的iPad上构建时,授予的是NO。我在我的iPhone和iPad上登录Twitter,我的应用程序被授予在我的iPad设置中使用我的帐户。
当我记录NSError的本地化描述时,我得到了这个:
未找到支持帐户类型com.apple.twitter
的访问插件
在Google上无法找到此错误的任何内容。 谁能帮助我?我已经删除了应用程序并在我的iPad上登出了我的Twitter帐户。
针对此问题打开了错误报告 rdar:// 16656440 。