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

旋转360度动画

时间:2015-08-11 18:32:22      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

CABasicAnimation* rotationAnimation;

    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];

    rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];

    rotationAnimation.duration = 0.5;

    rotationAnimation.cumulative = YES;

    rotationAnimation.repeatCount = 1;

    

    [self.animationView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];

旋转360度动画

标签:

原文地址:http://www.cnblogs.com/bing-ge/p/4721372.html

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