美文网首页
19、定时器

19、定时器

作者: 天听云道 | 来源:发表于2016-05-12 10:54 被阅读30次
        //--每隔 1s 执行一下绑定的 myTimer 方法
        NSTimer* timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(myTimer) userInfo:nil repeats:YES];
        //--如果写下面这句话,意味着 创建完,马上运行
        [timer fire];
    
    //----用完记得关闭和置空
    
        //--关闭定时器
        [timer invalidate];
        //--置空安全
        timer = nil;
    

    相关文章

      网友评论

          本文标题:19、定时器

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