美文网首页iOS吧
iOS中让一张图片旋转

iOS中让一张图片旋转

作者: 酒深巷子Ya | 来源:发表于2017-05-20 17:23 被阅读4次

图片旋转

CABasicAnimation* rotationAnimation;
    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
    rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];
    rotationAnimation.duration = 1;
    rotationAnimation.cumulative = YES;
    rotationAnimation.repeatCount = 10000;
    [imageView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];

持续更新~🙈

相关文章

网友评论

    本文标题:iOS中让一张图片旋转

    本文链接:https://www.haomeiwen.com/subject/vyypxxtx.html