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

How to set symbolic breakpoint for initWithNibName in Xcode

如何在xcode10.1中设置断点的方法 [initWithNibName: bundle:] 在 Objective-C?

中调用

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

我尝试了以下但没有用:

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

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

在编写方法签名时不要使用任何space。应该是:

-[UIViewController initWithNibName:bundle:]