0
我在我的代碼使用如何知道函數是否完成?
[NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(myfunc:) userInfo:text repeats:false];
。我如何知道myfunc
是否已完成運行,以便我可以獲取它已更改的全局變量?
謝謝!
我在我的代碼使用如何知道函數是否完成?
[NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(myfunc:) userInfo:text repeats:false];
。我如何知道myfunc
是否已完成運行,以便我可以獲取它已更改的全局變量?
謝謝!
您可以通過Cocoa的notification system通知調用者。
爲什麼函數不能通知收件人? – 2010-09-09 11:20:09