动画的旋转装载机与图像和面具

时间:2013-07-13 01:36:24

标签: ios animation uiview

我拥有一张图片,如下图所示!

我想制作一个加载器代表这个动画的加载器(ci-below)!

我对我使用的代码有一个小小的想法,但是嗯,我希望你对这个问题的看法,如果可能的话,如何实现它的不同想法!

Image for my loader animation

Animation as wanted !

快速概念代码:

[UIView animateWithDuration:1.0f delay:0.0f options: UIViewAnimationCurveLinear animations:^(void) {
        //rotate half way (use 179.9 for direction, -179.9 is left)
        self.refreshButton.transform = CGAffineTransformRotate(self.refreshButton.transform,179.9*M_PI/180);
    } completion:^(BOOL finished) {
        //still loading? rotate half again
        if ([self.superAwesomeWebView isLoading]) {
            [self animateLoadButton];
        }
    }];

1 个答案:

答案 0 :(得分:1)

这应该可以解决问题(需要ARC):

https://www.cocoacontrols.com/controls/dacircularprogress