iphone dev - 活动指示器随表格滚动
在我的应用程序的视图中,我对 tableViewController 进行子类化,并在加载表格内容时显示一个活动指示器。我把它放在屏幕的中心,但它与 tableView 一起滚动(我猜原因是我将它添加为表视图的子视图)。有没有办法即使表格滚动也可以将活动指示器保留在屏幕中央?
In a view of my app I subclass tableViewController and has an activity indicator shown up when the table content is loading. I put it in the center of the screen but it scroll with the tableView (I guess the reason is I add it as a subview of the table view). Is there a way that I can keep the activity indicator in the center of the screen even the table is scrolling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
UIViewController
子类化,然后设置一个表属性,将UITableView
添加为UIView
的子类,使其行为与一个 UITableViewController。或者,更简单地,您可以将 UIActivityIndicator 作为子视图添加到主窗口。
You could either subclass a
UIViewController
instead, and set a table property, adding aUITableView
as a subclass to theUIView
, making it behave exactly like aUITableViewController
.Or, more simply, you could just add the
UIActivityIndicator
as a subview to the main window.