【iOS笔记】【13】iOS延迟执行

本文最后更新于:2021年12月22日 中午

【主页】系列文章目录

【iOS笔记】系列目录


一、performSelector

  • 非阻塞
  • 主线程执行(子线程不启动runloop的话不会执行)
    1
    [self performSelector:@selector(delayMethods) withObject:nil afterDelay:1.0];
  • 执行之前可取消
    1
    2
    3
    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(delayMethods) object:nil];

    [NSObject cancelPreviousPerformRequestsWithTarget:self];

二、NSTimer

  • 非阻塞
  • 主线程执行
    1
    NSTimer *timer =  [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(delayMethods) userInfo:nil repeats:NO];
  • 执行之前可销毁
    1
    [timer invalidate];

三、sleep

  • 阻塞
  • 不可取消

    1)、objective-c

    1
    [NSThread sleepForTimeInterval:1];

    2)、c

    1
    sleep(1);

    四、GCD

  • 非阻塞
  • 不可取消
1
2
3
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[self delayMethods];
});

联系方式

邮箱: xiebangyao_1994@163.com

相关账号: