UIActivityIndicatorView 用于为 URL 加载的 UIImage
我有一个从 URL 加载的 UIImage
,我想在加载图像时显示一个 UIActivityIndicatorView
动画。有人可以帮助我吗?
谢谢大家。
I have an UIImage
that is loaded from a URL, and i want to show an UIActivityIndicatorView
animating while the image loads. Someone can help me?
Thanks for all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以你想在访问服务器时使用
UIActivityIndicator
。首先在连接调用时创建指示器,然后在连接完成加载时删除活动指示器
So u want to use the
UIActivityIndicator
while accessing the server.First create the indicator while the connection call, and when connection didfinishloading remove the activity indicator
首先在 xib 中添加 Activity 指示器并连接 UIActivity Indicator 的对象。
单击 xib 中的“停止时隐藏”。
然后,
然后在代表中,
First of all add Activity indicator in xib and connect object of the UIActivity Indicator.
Click "Hides when Stopped" in the xib.
Then,
And then in the delegate,