美文网首页
延时操作

延时操作

作者: 冉俊 | 来源:发表于2018-08-30 14:26 被阅读9次
    1.
     dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [self ad];
     });
    
    2.
        // repeats 传YES 会间隔1.5秒继续调用ad方法
     [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(ad) userInfo:nil repeats:NO];
    
    3.
     [self performSelector:@selector(ad) withObject:nil afterDelay:1.5];
    

    相关文章

      网友评论

          本文标题:延时操作

          本文链接:https://www.haomeiwen.com/subject/hlorwftx.html