iphone – 与ACAccountStore的Twitter集成问题(iOS 5)

iphone – 与ACAccountStore的Twitter集成问题(iOS 5),第1张

概述当我使用iOS 6.0运行下面的代码时,它正在工作 ACAccountStore *account = [[ACAccountStore alloc] init];ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];[account 当我使用iOS 6.0运行下面的代码时,它正在工作

ACAccountStore *account = [[ACAccountStore alloc] init];ACAccountType *accountType = [account accountTypeWithAccountTypeIDentifIEr:ACAccountTypeIDentifIErTwitter];[account requestAccesstoAccountsWithType:accountType options:nil                                  completion:^(BOol granted,NSError *error)     {         dispatch_async(dispatch_get_main_queue(),^{             if (granted)              {                 //MY CODE             }         });     }];

当我用iOS 5.0或5.1运行此代码时,它崩溃与以下输出,

*** Terminating app due to uncaught exception 'NSinvalidargumentexception',reason: '-[ACAccountStore requestAccesstoAccountsWithType:options:completion:]: unrecognized selector sent to instance 0x68a57c0'

不知道这个奇怪的崩溃日志..

请告诉我,如何摆脱这个..

解决方法 使用以下方法:

[account requestAccesstoAccountsWithType:accountType withCompletionHandler:^(BOol granted,NSError *error) {   if (granted) {            //Your code            }        }   }];
总结

以上是内存溢出为你收集整理的iphone – 与ACAccountStore的Twitter集成问题(iOS 5)全部内容,希望文章能够帮你解决iphone – 与ACAccountStore的Twitter集成问题(iOS 5)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1080962.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存