1

cocoa アプリケーションにはメインの実行ループがあることは知っていますが、フレームごとに関数を呼び出す方法を教えてください。つまり、この関数はメイン ループのすべてのプロセスで呼び出す必要があります。+ (NSRunLoop*) currentRunLoop; の -(void) 実行によるものですか?

4

2 に答える 2

2

You can call getCFRunLoop to get the Core Foundation RunLoop. Then it's just a matter of adding an observer to the CFRunLoop. See the docs for this function:

CFRunLoopAddObserver()

于 2011-01-16T09:58:58.337 に答える