当前位置: 代码迷 >> 综合 >> iOS定时器(NSTimer)
  详细解决方案

iOS定时器(NSTimer)

热度:62   发布时间:2024-01-20 19:26:36.0

1、注册过的定时器

 

    @property(nonatomic,weak)NSTimer *timer;//

//注册定时器

    self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(showCount) userInfo:nil repeats:YES];

//停止定时器

    [self.timer invalidate];



2、未注册过的定时器

//这是一个未注册的定时器 使用的时候要特别注意

    self.timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(showText) userInfo:nil repeats:YES];

    [[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSDefaultRunLoopMode];




转载请注明出处:http://blog.csdn.net/sevenquan