I implemented a basic UIViewController with a UITableView that\'s wrapped in a UINavigationController. I set prefersLargeTitles to true:
prefersLargeTitles
override fu
One more possible solution is to end refresh in your refreshHandler(). like this-
@objc func refreshPage() { self.refreshControl?.endRefreshing() //End here self.loadTableData() //Get fresh data and reload table }