zoukankan      html  css  js  c++  java
  • NSTimer

    NSTimer是Cocoa中比较常用的定时器类,基本操作如下:
    handleTimer方法可以自行定义。在需要的地方创建timer即可,handleTimer就可以每0.5秒执行一次。
     
    - (void) handleTimer: (NSTimer *) timer
    {
       //在这里进行处理
    }
     
    NSTimer *timer;
     
    timer = [NSTimer scheduledTimerWithTimeInterval: 0.5
                                                                     target: self
                                                                     selector: @selector(handleTimer:)
                                                                     userInfo: nil
                                                                     repeats: YES];
  • 相关阅读:
    ssd笔记
    深度学习 参数笔记
    NVIDIA驱动安装
    下载大文件笔记
    vue中使用echart笔记
    torch.no_grad
    暑期第二周总结
    暑期第一周总结
    第十六周学习进度
    期末总结
  • 原文地址:https://www.cnblogs.com/mac_arthur/p/1708328.html
Copyright © 2011-2022 走看看