Travis Elliott
Travis Elliott

Reputation: 291

iPhone Blue Bar at top of screen

This is hands down the dumbest question I have ever had to ask but I have a blue bar appearing at the top of my view and I have no idea why or how to get rid of it. The view is simply a UIView, not table or navigation its just a blank view but when I run the app in the simulator there is a blue bar across the top the size of a navigation or tool bar. If you have any idea why this darn thing is there I would greatly appreciate it. enter image description here

Upvotes: 1

Views: 12667

Answers (1)

CBredlow
CBredlow

Reputation: 2840

Try this inside the view will appear method:

self.navigationController.navigationBarHidden  = YES;

Upvotes: 1

Related Questions