@chenbinghua
2015-09-12T10:34:52.000000Z
字数 483
阅读 1680
iOS笔记
// 2s后自动调用self的hideHUD方法
[self performSelector:@selector(hideHUD) withObject:nil afterDelay:2];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
// 2s后自动执行这个block里面的代码
});
// 2s后自动调用self的hideHUD方法
[NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(hideHUD) userInfo:nil repeats:NO];
// repeats如果为YES,意味着每隔2s都会调用一次self的hidHUD方法
- (void)invalidate;// 该方法可以停止NSTimer