Reputation: 6764
I have a UIViewController
where the UINavigationBar
is pushing all the children views down. I have tried using this code in viewDidLoad
and in viewWillAppear
methods:
self.navigationController.navigationBar.translucent = YES;
But this doesn't seem to be working. Where am I going wrong?
Upvotes: 0
Views: 61
Reputation: 15335
Try with the Extend Edges
property in the Attributes inspector
also.
Uncheck these (under top bars & under bottom bars )
Upvotes: 1