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

问题描述 投票:1回答:1

如何在Objective-C中调用方法[initWithNibName: bundle:]时在xcode 10.1中设置断点?

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

我尝试了以下但它不起作用:

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

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

debugging xcode10.1 symbolic-breakpoint
1个回答
2
投票

编写方法签名时不要使用任何空格。它应该是:

-[UIViewController initWithNibName:bundle:]

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.