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

IOS实现动画的几种简单方法

时间:2015-07-02 13:59:58      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

1.使用 NSTimer 来实现

 

[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(setNeedsDisplay) userInfo:nil repeats:YES];

 

 

 

2.使用 CADisplayLink 来实现

CADisplayLink *link = [CADisplayLink displayLinkWithTarget:self selector:@selector(setNeedsDisplay)]; 

[link addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSDefaultRunLoopMode];

 

 

IOS实现动画的几种简单方法

标签:

原文地址:http://www.cnblogs.com/cjt5132/p/4615735.html

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