码迷,mamicode.com
首页 > 其他好文 > 详细

设置图片不停旋转会卡顿

时间:2016-01-09 20:12:09      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

解决方法为

把函数名里所传需要的参数放到全局变量 即可

- (void)rotateWithSpeed:(CGFloat)spd

{

[UIView animateWithDuration:spd

                          delay:0

                        options:UIViewAnimationOptionCurveLinear

                     animations:^{

                         self.blade.transform = CGAffineTransformRotate(self.blade.transform, M_PI_2);

                     }

                     completion:^(BOOL finished){

                         if (finished) {

                             [self rotateWithSpeed:spd];

                         }

                     }];

}

 

换为

 

- (void)rotateWithSpeed

{

[UIView animateWithDuration:self.spd

                          delay:0

                        options:UIViewAnimationOptionCurveLinear

                     animations:^{

                         self.blade.transform = CGAffineTransformRotate(self.blade.transform, M_PI_2);

                     }

                     completion:^(BOOL finished){

                         if (finished) {

                             [self rotateWithSpeed];

                         }

                     }];

}

 

 

 

设置图片不停旋转会卡顿

标签:

原文地址:http://www.cnblogs.com/aoxer/p/5117009.html

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