UIView under UINavigationBar on IOS7

ios7, uirefreshcontrol, uitableview

Solution

Regarding 1.The `UIToolbar` and `UISearchBar` is not visible any more write the below code in `viewDidLoad` and your problem will solved.

[self setEdgesForExtendedLayout:UIExtendedEdgeLeft | 
                                UIExtendedEdgeBottom | 
                                UIExtendedEdgeRight];

Problem

We're working on the transition between IOS6 and IOS7 and have the next issues, for the moment without solution: The structure of our view is the next one: - UIView - UIToolbar for ad-hoc buttons (filter button for the list) - UISearchBar over the UIToolbar to integrate the search component with the list - UITableView Working perfectly on the previous versions of the IOS SDK. But in IOS7 we have the next troubles: - The UIToolbar and UISearch bar is not visible anymore - We integrated the UIRefreshBar component and after refresh the UITableView always move under the UINavigationBar Any suggestions?

Original source