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.
是否可以检查特定方法是否在 iOS 上的特定时间点执行?
例如,我想知道方法sampleMethod是否在应用程序开始执行后 1 分钟运行?
你不能为此使用 _cmd 吗?
NSLog(@"Method name = %@", NSStringFromSelector(_cmd));
在方法中使用断点和/或NSLog(NSString)函数。
NSLog(NSString)