如何在Xcode中为initWithNibName设置符号断点

时间:2019-04-22 09:01:18

标签: debugging xcode10.1 symbolic-breakpoint

如何在xcode 10.1中设置断点以使方法断开 [initWithNibName: bundle:]是在Objective-C中调用的吗?

我可以为-[UIViewController viewDidLoad]设置断点,但是不知道如何处理initWithNibName。

我尝试了以下操作,但没有用:

-[UIViewController initWithNibName:]
-[UIViewController initWithNibName: bundle:]
-[UIContentContainer initWithNibName:]
-[UIContentContainer initWithNibName: bundle:]

我不想为每个CustomUIViewController覆盖initWithNibName,然后为每个类设置断点。

1 个答案:

答案 0 :(得分:2)

编写方法签名时请勿使用任何空格。应该是:

-[UIViewController initWithNibName:bundle:]

polyfill