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