Sephiroth87 / ODRefreshControl

A pull down to refresh control like the one in Apple's iOS6 Mail App
MIT License
2.15k stars 385 forks source link

Quick tip: Show UIActivityIndicator above searchBar... #61

Closed ruddfawcett closed 9 years ago

ruddfawcett commented 11 years ago

When using ODRefreshControl, I noticed that if a table view has a search bar, the UIActivityIndicator is hidden. Simply add this to your viewDidLoad:

self.tableView.contentOffset = CGPointMake(0, -44);

This will initiate the view -44 above the tableview/searchbar, showing the activity indicator.

AliAlem commented 11 years ago

Very useful when starting the refresh control programatically [refreshControl beginRefreshing]