摘要:
我感觉,这个可以Win32里面的while( PeekMessage( ... ) )是一会儿事情。比较简单。CFRunLoopRun();就完成了这个事情。那么如何解除这个Block呢?可以用这个:CFRunLoopStop( someLoop );someLoop可以通过CFRunLoopGetCurrent()函数来获得。这样就可以轻易地等待各种线程了,比如说动画线程。@interface UIViewDelegate : NSObject{ CFRunLoopRef _currentLoop;}@end@implementation UIViewDelegate-(id) in... 阅读全文