I'd like to have the UISearchBar be initially hidden behind the navigation bar using the UITableView's contentInset and contentOffset, however, I can't seem to get UITableViewController, UISearchDisplayController and automaticallyAdjustsScrollViewInsets to play nice.
If I set the contentInset, the controller will reset it when displayed.
Setting automaticallyAdjustsScrollViewInsets to NO hides the table under the UINavigationBar and won't respond to me setting the UIViewController's view property (in order to change the frame). If I override loadView and set the view directly, it removes the UITableView and just setting the frame doesn't have any effect.
Is this possible in iOS 7?