标签:
//会卡住主线程
[NSThread sleepForTimeInterval:时间(秒)];
//定制延迟任务后,不会卡主线程,在主线程执行
[self performSelector:@selector(方法名) withObject:方法参数 afterDelay:时间(秒)];
//GCD延迟执行
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(时间(秒) * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
//代码....
});
标签:
原文地址:http://www.cnblogs.com/cx-ios/p/4708950.html