gpt4 book ai didi

ios - 带有图像和蒙版的动画旋转加载程序

转载 作者:行者123 更新时间:2023-11-29 03:46:59 24 4
gpt4 key购买 nike

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

我想制作一个加载器来代表这个动画(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];
}
}];

最佳答案

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

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

关于ios - 带有图像和蒙版的动画旋转加载程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17626135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com