I ran into a layout issue in iOS 7:

To reproduce, create a simple master-part-application and paste this line into MasterViewController.m:
self.navigationItem.prompt = @"Master";
and this is in DetailViewController.m:
self.edgesForExtendedLayout = UIRectEdgeNone;
Both lines in viewDidLoad .
The detail view frame does not update correctly when the navigation bar shrinks to its normal size.
How do I fix this?
ios layout ios7 master-detail uinavigationbar
Felix
source share