美文网首页
自定义的图片实现旋转的动画

自定义的图片实现旋转的动画

作者: super_lian | 来源:发表于2015-12-14 01:55 被阅读123次

    自定义的图片实现旋转的动画

    、、、

    self.hudImageView = [[UIImageView alloc] init];
    [self.hudImageView setImage:SLImageName(@"loading")];
    [self addSubview:self.hudImageView];
    CABasicAnimation* rotationAnimation;
    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
    rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];
    [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    rotationAnimation.duration = 2;
    rotationAnimation.repeatCount = FLT_MAX;//你可以设置到最大的整数值
    rotationAnimation.cumulative = NO;
    rotationAnimation.removedOnCompletion = NO;
    rotationAnimation.fillMode = kCAFillModeForwards;
    [self.hudImageView.layer addAnimation:rotationAnimation forKey:@"Rotation"];
    

    、、、

    DDA3335B-FE13-4577-A179-12C547242455.png

    相关文章

      网友评论

          本文标题:自定义的图片实现旋转的动画

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