每次我刷新桌面时,uirefreshcontrol似乎都是小故障。以下是我正在使用的代码。有什么想法吗?
在AppDelegate中:
UINavigationBar.appearance().isTranslucent = false
UINavigationBar.appearance().barTintColor = UIColor.red
UINavigationBar.appearance().tintColor = UIColor.white
在uitaiteViewController中:
self.tableView.refreshControl = UIRefreshControl()
if #available(iOS 11.0, *) {
self.navigationController?.navigationBar.prefersLargeTitles = false
} else {
// Fallback on earlier versions
}
self.tableView.refreshControl = refreshCont
对我而言, self.extendedLayoutIncludesOpaqueBars = YES
修复了问题。