美文网首页
延时操作

延时操作

作者: 冉俊 | 来源:发表于2017-11-06 13:57 被阅读4次

    延时操作

     dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [self ad];
        });
       
        // repeats 传YES 会间隔1.5秒继续调用ad方法
        [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(ad) userInfo:nil repeats:NO];
       
        [self performSelector:@selector(ad) withObject:nil afterDelay:1.5];
    

    相关文章

      网友评论

          本文标题: 延时操作

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