iOS 11小故障效应中的uirefreshcontrol()



每次我刷新桌面时,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修复了问题。

相关内容

  • 没有找到相关文章

最新更新