iOS   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iphone – 与ACAccountStore的Twitter集成问题(iOS 5)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
当我使用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)所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。