TTTableViewController 重新加载数据时不显示活动状态
我正在使用 TTTableViewController,当单击 UISegmentedControl 时,它会加载不同的数据 url。
currentUrl = [urlList objectAtIndex:segmentedControl.selectedSegmentIndex];
....
[self invalidateModel];
....
它工作正常,当我选择不同的分段控件时,我的 TTTableViewController 会从 currentUrl 加载新数据。
问题是加载新数据时我没有获得活动状态(旋转加载覆盖)。
当我重新加载表数据时,是否可以调用任何方法来获取加载?
已经尝试了许多其他方法,例如刷新,重新加载,invalidateView..但到目前为止还没有运气 谢谢!
I'm using a TTTableViewController that loads different data urls when a UISegmentedControl is clicked.
currentUrl = [urlList objectAtIndex:segmentedControl.selectedSegmentIndex];
....
[self invalidateModel];
....
it's working fine and when I select a different segmented control my TTTableViewController loads the new data from the currentUrl.
The problem is that I don't get the activity status (the spinning loading overlay) when the new data is loaded.
Is there any method I can call to get the loading when I reload the table data?
Already tried many others method like refresh, reload, invalidateView.. But no luck so far
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过
在模型无效时调用并在委托中实现它来解决
Solved by calling
when I invalidate the model, and implementing this in the delegate