iPad模拟器崩溃,“NSInvalidArgumentException”

时间:2011-07-13 19:38:30

标签: objective-c ios xcode uiviewcontroller crash

  

可能重复:
  crashing on ios device while navigation using UIModalTransitionStylePartialCurl in xcode 4

我正在制作一个应用程序,这是一个测试,中间的一半,我跑,我的切换页面代码崩溃,这从未发生过,突然发生了。奇怪吧?这是我的代码:

-(IBAction)fail {
Fail *fail = [[Fail alloc]
              initWithNibName:@"Fail" bundle:nil];
fail.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:fail animated:YES];

 }

这是我的控制台崩溃日志:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:     'Application tried to present a nested modal view controller while curled <QThree:    0x5537190>.'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x00f025a9 __exceptionPreprocess + 185
    1   libobjc.A.dylib                     0x01056313 objc_exception_throw + 44
    2   UIKit                               0x000d2bac -[UIViewController     presentModalViewController:withTransition:] + 741
    3   Smart2                              0x0000730a -[QThree fail] + 135
    4   UIKit                               0x0001f4fd -[UIApplication sendAction:to:from:forEvent:] + 119
    5   UIKit                               0x000af799 -[UIControl sendAction:to:forEvent:] + 67
    6   UIKit                               0x000b1c2b -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 527
    7   UIKit                               0x000b07d8 -[UIControl touchesEnded:withEvent:] + 458
    8   UIKit                               0x00043ded -[UIWindow _sendTouchesForEvent:] + 567
    9   UIKit                               0x00024c37 -[UIApplication sendEvent:] + 447
    10  UIKit                               0x00029f2e _UIApplicationHandleEvent + 7576
    11  GraphicsServices                    0x0113b992 PurpleEventCallback + 1550
    12  CoreFoundation                      0x00ee3944 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 52
    13  CoreFoundation                      0x00e43cf7 __CFRunLoopDoSource1 + 215
    14  CoreFoundation                      0x00e40f83 __CFRunLoopRun + 979
    15  CoreFoundation                      0x00e40840 CFRunLoopRunSpecific + 208
    16  CoreFoundation                      0x00e40761 CFRunLoopRunInMode + 97
    17  GraphicsServices                    0x0113a1c4 GSEventRunModal + 217
    18  GraphicsServices                    0x0113a289 GSEventRun + 115
    19  UIKit                               0x0002dc93 UIApplicationMain + 1160
    20  Smart2                              0x00003092 main + 83
    21  Smart2                              0x00002911 start + 53
)
terminate called after throwing an instance of 'NSException'

我不知道问题是什么,特别是为什么它突然在一个版本中升起,我不记得我添加了哪些代码,因为它实际上已经有一段时间了,因为我上次构建。 SOO!

2 个答案:

答案 0 :(得分:1)

好像你已经展示了一个风格为UIModalTransitionStylePartialCurl的视图。之后您无法呈现另一个模态视图,您必须首先关闭卷曲视图。

答案 1 :(得分:1)

根据“崩溃”,您已经以模式方式呈现了一个带有页面卷曲效果的视图。与其他模态演示不同,页面卷曲模态视图控制器无法堆叠。因此,正在提出这个例外,因为这是你正在尝试做的事情;在另一个具有页面卷曲效果的模态视图控制器中呈现模态视图控制器。

要停止此操作,您将不得不重构您的应用工作流程或使用不同的动画呈现第一个模态视图控制器。