0

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

我想做一个加载器来表示这个动画(ci-below)!

我对我用于此的代码有一个小想法,但是嗯,我想听听你对此事的看法,如果可能的话,对如何实现它有不同的想法!

我的加载器动画的图像

动画如愿!

快速概念代码:

[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];
        }
    }];
4

1 回答 1

1

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

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

于 2013-07-13T01:57:10.007 回答