24 09 2013
Recently while updating A LOT of our apps I see that one of the main issues is the content going under a UINavigationController. It appears the solution is rather easy and quick to fix.
1 2 3 4 5 6 |
public override void ViewDidLoad () { base.ViewDidLoad (); EdgesForExtendedLayout = UIRectEdge.None; } |
This works a treat in most instances, however your app will no longer be compatible with iOS6 and below devices. […]