码迷,mamicode.com
首页 > 移动开发 > 详细

iOS中的定时器

时间:2015-02-07 11:26:11      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

iOS中的两个定时器:

1.NSTimer  ------>简单使用,时间多于1秒使用
2.CADisplayLink  ------>简单使用,时间小于一秒使用,每秒调用60次
 

@property(nonatomic,strong)NSTimer* timer;

1.1手动加入消息循环

 

// 开启定时器

 

-(void)startTimer{

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

    

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

    

}

 

// 移除定时器

 

- (void)stopTimer

{

    [self.timer invalidate];

    self.timer = nil;

}

——————————————————————————————————————————————————————————————————————————————————

1.2 自动加入消息循环

 

// 开启定时器

 

-(void)startTimer

{

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

   

}

 

 // 移除定时器

 

- (void)stopTimer

{

    [self.timer invalidate];

     self.timer = nil;

}

——————————————————————————————————————————————————————————————————————————————————

2.

@property(nonatomic,strong)CADisplayLink* link;

 

 //开启定时器

 

-(void)startTimer

{

       self.link = [CADisplayLink displayLinkWithTarget:self selector:@selector(updateLrc)];

    [self.link addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];

}

//移除定时器

- (void)stopTimer

{

    [self.link  invalidate];

    self.link  = nil;

}

 

iOS中的定时器

标签:

原文地址:http://www.cnblogs.com/lijianyi/p/4278455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!