RunLoop与线程保活
代码:
#import "ViewController.h" @interface ViewController () @property (nonatomic, weak) NSThread *thread; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(start) object:nil]; thread.name = @"My Thread"; [thread start]; self.thread = thread; } - (void)start { NSLog(@"%s - %@", __FUNCTION__, [NSThread currentThread].name); NSRunLoop *currentRunLoop = [NSRunLoop currentRunLoop]; // Adds a port as an input source to the specified mode of the run loop [currentRunLoop addPort:[NSPort port] forMode:NSDefaultRunLoopMode]; [currentRunLoop run]; } - (void)run { NSLog(@"%s - %@", __FUNCTION__, [NSThread currentThread].name); } - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { [self performSelector:@selector(run) onThread:self.thread withObject:nil waitUntilDone:NO]; } @end
输出:
-[ViewController start] - My Thread -[ViewController run] - My Thread -[ViewController run] - My Thread -[ViewController run] - My Thread
豪情壮志铁傲骨,原来英雄是孤独。