1. 程式人生 > >ios 將一個函數在主線程執行的4種方法

ios 將一個函數在主線程執行的4種方法

don gcd lec sel eth ted 線程隊列 nsthread gpo

  • GCD方法,通過向主線程隊列發送一個block塊,使block裏的方法可以在主線程中執行。
dispatch_async(dispatch_get_main_queue(), ^{  //需要執行的方法 });
  • NSOperation 方法
NSOperationQueue *mainQueue = [NSOperationQueue mainQueue];  //主隊列NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{ //需要執行的方法 }]; [mainQueue addOperation:operation];
  • NSThread 方法
[self performSelector:@selector(method) onThread:[NSThread mainThread] withObject:nil waitUntilDone:YES modes:nil]; [self performSelectorOnMainThread:@selector(method) withObject:nil waitUntilDone:YES]; [[NSThread mainThread] performSelector:@selector(method) withObject:nil];
  • RunLoop方法
[[NSRunLoop mainRunLoop] performSelector:@selector(method) withObject:nil];

ios 將一個函數在主線程執行的4種方法