1

我正在尝试调试似乎是 iOS 上的断言失败。有问题的设备似乎没有产生崩溃日志。相反,在控制台中,我看到了这个:

Apr 11 16:22:56 iPhone5 SpringBoard[69] <Warning>: Killing com.yourapp for termination assertion
Apr 11 16:22:56 iPhone5 com.apple.launchd[1] (UIKitApplication:com.appspot.scruffapp[0xa993][19484]) <Notice>: (UIKitApplication:com.yourapp[0xa993]) Exited: Killed: 9

有没有办法将这个非常有限的信息连接到实际的源文件+行号?此外,为什么设备可能不会创建任何崩溃日志,这显然更容易符号化和诊断?

谢谢,埃里克

4

1 回答 1

0

您是否尝试过使用:

@try {
    //code here
}
@catch (NSError *error) {
    NSLog(@"%@", error);
}
于 2013-04-11T20:56:45.787 回答