美文网首页
iOS NSTimer简单使用

iOS NSTimer简单使用

作者: MonkeysAndTyper | 来源:发表于2016-05-09 20:57 被阅读0次

    1 计时器添加到NSRunloop

    self.timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(nextPage) userInfo:nil repeats:YES];
        //添加到runloop中
       [[NSRunLoop mainRunLoop]addTimer:self.timer forMode:NSRunLoopCommonModes];
    

    相关文章

      网友评论

          本文标题:iOS NSTimer简单使用

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