我正在輸出調試日誌,我想知道我的代碼中的特定方法是否在當前runloop中執行,而不是在後續執行中。有沒有辦法做到這一點?有沒有辦法知道你當前在使用哪個runloop或frame?
例如,在最簡單意義上的運行循環:
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++;
}
您是否想要從執行線程或不同線程中查詢此信息? – 2013-02-21 19:19:13
讓我詳細說明我的問題。 – Boon 2013-02-22 02:19:25