标签:os 使用 io for 代码 sp c ios bs
调用NSObject的方法
[self performSelector:@selector(run) withObject:nil afterDelay:2.0];
// 2秒后再调用self的run方法
使用GCD函数
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
// 2秒后异步执行这里的代码...
});
标签:os 使用 io for 代码 sp c ios bs
原文地址:http://www.cnblogs.com/bluceZ/p/3942954.html