我发生了随机出现的崩溃...我正在使用这个库进行教程: https://github.com/MatthewYork/MYBlurIntroductionView
由于错误不是那么明显,并且在我的代码中放置了几个NSLog并且在这个库中没有帮助,我带着我的日志到这里来,希望你能够帮助我!
当我尝试从幻灯片1滑动到幻灯片2时,会发生崩溃。
*** -[UIViewControllerBuiltinTransitionViewAnimator respondsToSelector:]: message sent to deallocated instance 0x7a70ba60
可以在此处找到堆栈跟踪:
运行NSZombie给了我这个结果:
对我而言,这只是中国人,但是如果你有关于这次崩溃的任何提示会很棒!
更新:我正在
的完成块中运行教程代码[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *rawData, NSError *error)
使用此代码:
dispatch_async(dispatch_get_main_queue(), ^{
TutorialViewController* myTutorial = [[TutorialViewController alloc] init];
[self presentViewController:myTutorial animated:NO completion:nil];
});
有或没有dispatch_async,有时会出现问题。