图层旋转

来源:互联网 发布:js时间选择器插件 编辑:程序博客网 时间:2024/06/06 06:33

    CABasicAnimation* rotationAnimation;

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

    rotationAnimation.toValue = [NSNumbernumberWithFloat: M_PI * 2.0 ];

    rotationAnimation.duration = 1.0f;

    rotationAnimation.cumulative = YES;

    rotationAnimation.repeatCount = 100000;

    

    [_finishIconImage.layeraddAnimation:rotationAnimation forKey:@"rotationAnimation"];

0 0
原创粉丝点击