iPad - iPhone 大 UIActivityIndicatorView
我需要制作一个大型旋转器(灰色风格,大约80x80px),但它看起来质量很低。 有没有办法提高其质量或替换动画图像?
I need to make a large spinner (with grey style, about 80x80px) but it looks low quality.
Is there a way to make it high quality or to replace the animated image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
实际上,您可以将
UIActivityIndicatorView
的指示器样式设置为 Large White,然后在代码中执行以下操作:Actually, you can set the indicator style of your
UIActivityIndicatorView
to Large White, and then in code do this:斯威夫特2.0解决方案
Swift 2.0 Solution
使用 UIActivityIndicatorView 无法完成此操作。但是,您可以使用 UIImageView 和一些简单的动画编写自己的 UIView 子类来为您完成此操作。
It can't be done using UIActivityIndicatorView. you can however write your own subclass of UIView using an UIImageView and some simple animation to do this for you.
斯威夫特3
Swift 3
你可以尝试这样的事情:
但是,如果你把它做得足够大,你将能够看到像素......
You could try something like:
However, if you make it big enough, you'll be able to see the pixels...
斯威夫特 4.2
Swift 4.2
您可以开始使用的一个有用项目是 MBProgressHUD。
A useful project that you can start off with is MBProgressHUD.