I have a UISearchBar which uses the UIScopeBar, and I am trying to get the first row of the table to display when the scope bar is not hidden.
Thanks in advance.
Here is an image of my problem(0th row is hidden):

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You just need to change the Table View’s content and scroll indicator insets when the search bar is displayed. This is achieved with the
scrollIndicatorInsetsandcontentInsetsproperties on UIScrollView. Just pass a UIEdgeInsets struct with the top offset by the appropriate amount for the height of the scope bar. Set it back to 0 when the scope bar disappears.