SLComposeViewController

SLComposeViewController

我正在开发需要支持社交框架的应用程序。所以我决定去

SLComposeViewController *cntrlr = [[SLComposeViewController alloc]init];
cntrlr =  [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];

但是奇怪的是,即使在15到20天前,该代码也能正常运行,但是现在由于在ipod上对其进行即时测试时,由于该行代码,应用程序崩溃了,但是当我在模拟器上对其进行测试时,它的工作正常。
请帮我 friend ...

最佳答案

请检查您的部署目标是否为6.0,因为iOS 6.0中提供了SLComposeViewController或字母

请检查此参考链接:

http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Reference/SLComposeViewController_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40012205

关于iphone - 在设备中测试时SLComposerViewController崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17067601/

10-13 01:23