lePapa
lePapa

Reputation: 377

UIRefreshControl() in iOS 11 Glitchy effect

Every time I pull to refresh the TableView, the UIRefreshControl appears to be glitchy. Below is the code I am using. Any Ideas?

In AppDelegate:

UINavigationBar.appearance().isTranslucent = false
UINavigationBar.appearance().barTintColor = UIColor.red
UINavigationBar.appearance().tintColor = UIColor.white

In UITableViewController:

self.tableView.refreshControl = UIRefreshControl()

if #available(iOS 11.0, *) {
  self.navigationController?.navigationBar.prefersLargeTitles = false
} else {
  // Fallback on earlier versions
}

self.tableView.refreshControl = refreshCont

Upvotes: 11

Views: 4010

Answers (1)

pre
pre

Reputation: 3506

For me self.extendedLayoutIncludesOpaqueBars = YES fixed the issue.

Upvotes: 21

Related Questions