Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我想为所有[super dealloc];调用添加断点。有没有什么快速的方法可以为所有相同的方法调用添加断点?
[super dealloc];
谢谢。
仅出于调试目的,您可以创建 NSObject 类别并在那里重新定义这些方法。
@implementation NSObject (debug) -(void) dealloc { } @end
这同样适用于其他类,但不能保证适用于 iOS 类,因为某些内部类别可能会干扰您的类。
我不确定是否有快速的方法,但您可以调整 NSObject dealloc 方法,并在其上设置断点。