1. performSelector方法
[self performSelector:@selector(delayMethod) withObject:nil afterDelay:1.0f];
此方法必須在主線程中執(zhí)行灸叼,否則無效帽衙。是一種非阻塞氏的執(zhí)行方式。
2. 定時器
NSTimer [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(delayMethod) userInfo:nil repeats:NO];
此方法必須在主線程中執(zhí)行裙戏,否則無效御滩。是一種非阻塞的執(zhí)行方式鸥拧,可以在NSTimer類的-(void)invalidate方法中取消執(zhí)行。
3. sleep方式
[NSThread sleepForTimeInterval:1.0f]; [self delayMethod];
此方法在主線程和子線程中均可以執(zhí)行削解,是一種阻塞的執(zhí)行方式富弦,建議放到子線程中以免界面卡頓。
4. GCD方式
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];
});```
此方法可以再參數(shù)中選擇執(zhí)行的線程氛驮,是一種非阻塞的方式腕柜。