I have a UITableView that has a subview UISearchBar attached via the Interface Builder. When - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar is called, I set searchBar.showsScopeBar = YES and call [searchBar sizeToFit] to actually show the scope bar of the search bar.
The problem is, that the first cell of my table view gets covered by the appearing scope bar. How can I refit the table view correctly?
sizeToFit, it is a UIView class, I am not sure if it runs or not – vodkhang Sep 20 '10 at 13:25searchBar.showsScopeBar = NO? Is this a work around of some sort? – Benedict Cohen Sep 20 '10 at 16:20