如何在 Xcode 中添加异常断点?
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
[pool release];
return retVal;
}
我的项目在下面的代码中随机崩溃,在谷歌中搜索,有人建议添加异常断点。我通过单击源代码行添加了断点。编辑断点不允许我更改类型。如何添加异常断点以及在哪里添加?(在 AppDelegate 中?