How to add refresh control to collection view large titles navigation bar in iOS 11?
As of iOS 10, UITableView
and UICollectionView
has refreshControl
property.
So, instead of:
tableView.addSubview(refreshControl)
you do:
tableView.refreshControl = refreshControl
and this should work for new big headers in iOS 11.