我们在UITableViewController上实现了pull down刷新。对于长时间运行的刷新,如果用户进入主屏幕然后返回到应用程序,UIRefreshControl似乎卡住了 - 它仍然显示但没有旋转。在SO上尝试了许多解决方案但没有任何效果。
我们的实施:
//Configure pull to refresh when user "pulls down"
self.refreshControl?.addTarget(self, action: #selector(NotificationTableViewController.handleRefresh(refreshControl:)), for: UIControlEvents.valueChanged)
//In handleRefresh we will explicitly start the refresh control if this is a background refresh and not a user initiated pull to refresh
refreshControl.beginRefreshing()
self.tableView.setContentOffset(CGPoint(x: 0, y: -refreshControl.frame.size.height - self.topLayoutGuide.length), animated: true)
//Then once we have reloaded data we stop the refresh in the same manner for user initiated or background refresh (done on main thread)
refreshControl.endRefreshing()
我们尝试过的解决方案:
Restarting the refreshing when entering foreground when currently refreshing:
if refreshControl!.isRefreshing == true {
refreshControl!.endRefreshing()
refreshControl!.beginRefreshing()
self.tableView.setContentOffset(CGPoint(x: 0, y: - refreshControl!.frame.size.height - self.topLayoutGuide.length), animated: true)
}
...然后,如果我们不应该刷新,以下解决方案是关于结束刷新。我确实尝试了它们,但在我们的情况下,我们应该更新...
Calling endRefreshing()
when entering foreground if not refreshing:
if refreshControl?.isRefreshing == false {
refreshControl?.endRefreshing()
}
Sending the refresh control to the back on entering foreground:
self.refreshControl?.superview?.sendSubview(toBack: self.refreshControl!)
有没有人有适用于iOS 10的修复程序?
答案 0 :(得分:2)
通常工作的是to stop the refresh control on background/disappear and start it again on foreground/appear。
但即使这也存在竞争条件的问题:我们的线程#1在后台加载数据,另一个线程#2处理前台/出现处理。如果线程#1由于数据加载完成而停止刷新指示器,同时线程#2尝试检查状态并启动刷新控制,那么我们可以在我们的刷新控制正在旋转但我们的加载数据请求的情况下获得自己已经完成了。我们可以尝试同步所有这些,但它不值得努力...
决定在背景上停止刷新控制/消失。如果用户在加载过程中返回到屏幕,我们就不会试图向用户显示刷新控件。
if refreshControl!.isRefreshing == true {
refreshControl!.endRefreshing()
}
答案 1 :(得分:0)
如果refreshControl!.isRefreshing
为false
,但您仍然有这个小故障:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
//fixes bug with refreshControl freezing while switching tabs
if tableView.contentOffset.y < 0 {
tableView.contentOffset = .zero
}
}