尝试抓住不起作用

时间:2011-07-22 22:42:22

标签: objective-c ios

我在XCode 4的输出窗口中得到了这个堆栈跟踪:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Page bottom]: unrecognized selector sent to instance 0xfbdb1f0'

但是,调用代码有一个try catch

@try {
    [self restoreStateWithControlSurfaces:result];
}
@catch (NSException *exception) {
    NSLog(@"Failed at restoreStateWithControlSurfaces %@", exception);
    retVal = NO;
}

它可能与NSHangOnOtherExceptionMask有关,但我不确定这是如何组合在一起的。如何让我的catch块工作?这是在iPad 4.2的模拟器中。

1 个答案:

答案 0 :(得分:3)

A bug has been reported阻止NSInvalidArgumentException被捕获。此错误似乎只影响模拟器。