我正在输出调试日志,我想知道我的代码中的特定方法是否在当前的 runloop 和后续的 runloop 中执行。有没有办法做到这一点?
例如,最简单意义上的运行循环:
int i = 0;
while (1) {
// process event queue
// here I want to print a number
// that signifies n-th time I am processing the run loop
NSLog(@"%d", i);
i++;
}