数据上传期间 UITableView 上的 UIProgressView+Activity Indicator View
我有一个合适的视图。
我看到了这个“效果”,我会重播它:
当用户点击按钮在服务器上上传一些数据时,我会在服务器上出现一个带有进度条(可能还带有活动指示器)的灰色(透明)视图。桌子。 该表已禁用,可以通过灰色视图查看(即灰色透明视图覆盖整个表)。
我怎样才能实现这个目标?
我是否创建了一个带有渐进视图的视图,然后将其放入表的同一个 xib 中,以编程方式正确禁用它?或者?
I have a uitableview.
I saw this "effect" and I would replay it:
When the user taps on a button to upload some data on a server, I would a gray (transparent) view with a progress bar (maybe with also an activity indicator) appears on the table.
The table is disabled and can be viewed through the gray view (that is the gray transparent view covers all the table).
How can I achieve this?
Have I create a view with a progressive view on it and then put it in the same xib of the table, disabling it properly programmatically? Or?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将一个大的黑色 UIView 放在 UITableView 之上,alpha 值为 0.5。然后在其顶部放置一个微调器 (UIActivityIndicatorView)。
像这样的事情:
然后稍后使用 [view removeFromSuperview] 将其删除
Lay a large black UIView over top of the UITableView with an alpha value of 0.5. Then put a spinner (UIActivityIndicatorView) on top of that.
Something like this:
Then remove it later with [view removeFromSuperview]