Reputation: 291
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.
Upvotes: 1
Views: 12667
Reputation: 2840
Try this inside the view will appear method:
self.navigationController.navigationBarHidden = YES;
Upvotes: 1