关于performSelector的执行

通过NSObject的Category方法调用,罗列如下:

- (void)performSelectorOnMainThread:(SEL)aSelector withObject:(id)arg waitUntilDone:(BOOL)wait;//在主线程中运行方法,wait表示是否阻塞这个方法的调用,如果为YES则等待主线程中运行方法结束。一般可用于在子线程中调用UI方法。

- (void)performSelector:(SEL)aSelector onThread:(NSThread *)thr withObject:(id)arg waitUntilDone:(BOOL)wait;//在指定线程中执行,但该线程必须具备run loop。

- (void)performSelectorInBackground:(SEL)aSelector withObject:(id)arg;//隐含产生新线程。

你可能感兴趣的:(关于performSelector的执行)