Help!!!
I am using UIRefreshControl
for my iOS tableview pull-to-refresh feature.
However, my layout need to have a larger "loading area".
How can I make the area larger??
I have tried self.tableView.contentInset = UIEdgeInsetsMake(500, 0, 0, 0)
but it does not work well when refreshControl!.endRefreshing()
is called.
Asked
Active
Viewed 2,811 times
3
-
1Possible duplicate of [iOS Refresh Control Height](https://stackoverflow.com/questions/28361002/ios-refresh-control-height) – Tamás Sengel Aug 03 '17 at 13:04
-
This worked for me - https://stackoverflow.com/questions/36767876/uirefreshcontrol-with-low-height-uicollectionview – Sayalee Pote Apr 19 '18 at 05:46