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];
  • 相关阅读:
    CentOS6设置密码过期时间
    scp
    windows查看进程
    mysql5.7密码问题
    mysql主从切换摘要
    mysql慢日志管理
    Linux学习(一)
    Linux学习(一)
    数据结构与算法(1)-算法时间复杂度
    数据结构与算法(1)-算法时间复杂度
  • 原文地址:https://www.cnblogs.com/mac_arthur/p/1708328.html
Copyright © 2011-2022 走看看