iOS中延時執行的幾種方式的比較和彙總

本文列舉了四種延時執行某函數的方法及其一些區別。假如延時1秒時間執行下面的方法。函數

- (void)delayMethod
{
    NSLog(@"execute");
}

 

1.performSelector方法spa

[self performSelector:@selector(delayMethod) withObject:nil afterDelay:1.0f];

 

此方式要求必須在主線程中執行,不然無效。
是一種非阻塞的執行方式,
暫時未找到取消執行的方法。線程

2.定時器:NSTimercode

[NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(delayMethod) userInfo:nil repeats:NO];

 

此方式要求必須在主線程中執行,不然無效。
是一種非阻塞的執行方式,
能夠經過NSTimer類的- (void)invalidate;取消執行。orm

3. sleep方式blog

[NSThread sleepForTimeInterval:1.0f];
[self delayMethod];

 

此方式在主線程和子線程中都可執行。
是一種阻塞的執行方式,建議方放到子線程中,以避免卡住界面
沒有找到取消執行的方法。get

4.GCD方式it

double delayInSeconds = 1.0;
__block ViewController* bself = self;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
    [bself delayMethod];
});

 

此方式在能夠在參數中選擇執行的線程。
是一種非阻塞的執行方式,
沒有找到取消執行的方法form

相關文章
相關標籤/搜索