Xcode中的异常断点

时间:2013-07-23 06:13:04

标签: iphone xcode

如何在Xcode中添加异常断点?

int main(int argc, char *argv[]) {

    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
    [pool release];
    return retVal;
}

我的项目随机崩溃在下面的代码中,在谷歌搜索,有些人建议添加异常断点。我通过点击源代码行添加了断点。编辑断点不允许我改变类型。如何添加Exception Breakpoint以及添加位置? (在AppDelegate?

enter image description here

3 个答案:

答案 0 :(得分:66)

您可以在Xcode中轻松添加异常断点。见下图:

enter image description here

答案 1 :(得分:25)

以下是步骤。

  • 转到“断点导航器”。

  • 点击导航器左下角的+符号。

enter image description here

  • 你应该看到这个。

enter image description here

答案 2 :(得分:19)

请按照以下步骤操作:

  • 在xcode上转到断点导航器(按命令+ 6 /对于xcode7 +命令+7)
  • 点击左下角的+按钮
  • 点击添加例外断点,按照下图中的说明进行操作

enter image description here