tags:

views:

116

answers:

1
+1  A: 

Since you're not using the view's controller to display it, you have to adjust the view's frame yourself. You have to set its origin to {0, 20} to take the space for the status bar into account.

But you'd be better off to use the UIViewController and push this on the UINavigationController. See the docs.

Nikolai Ruhe
Thanks for that - I've taken your advice and refactored the design to use a UINavigationController instead.
Fuzzy Purple Monkey