0

I'm converting an app to iOS 7/8, and one of the issues is that the primary page, which displays web content, has lettering which overlaps with the status bar. Is there a way to add a transparent element, maybe a label or an image, that will nudge the web view down so there's no overlap?

Jack BeNimble
  • 35,733
  • 41
  • 130
  • 213

1 Answers1

0

Add a top constraint to your web view or main container view which is pinned to the top layout guide and not the top of the view.

That should cause it to stop before the status bar. When a navigation bar is shown, it should stop at the navigation bar.

Rory McKinnel
  • 7,936
  • 2
  • 17
  • 28