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)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)