现在的位置: 首页 > 综合 > 正文

图层旋转

2017年12月09日 ⁄ 综合 ⁄ 共 379字 ⁄ 字号 评论关闭

    CABasicAnimation* rotationAnimation;

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

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

    rotationAnimation.duration =
1.0f
;

    rotationAnimation.cumulative =
YES
;

    rotationAnimation.repeatCount =
100000
;

    

    [_finishIconImage.layer
addAnimation:rotationAnimation forKey:@"rotationAnimation"];

抱歉!评论已关闭.