I have UITableViewone that has a subview UISearchBarconnected through Interface Builder. When invoked - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar, I install searchBar.showsScopeBar = YESand invoke [searchBar sizeToFit]to actually display the search pane bar.
The problem is that the first cell of my table view is covered by the appearing scope. How can I set table view correctly?
source
share