user2228755
user2228755

Reputation: 407

Delete the grey bar at the bottom of the UIView

Why does all my UIViews have a grey bar at the bottom. I can hide it in runtime with the code self.navigationController.toolbarHidden = YES;

But I need it hidden in development mode. I have tried changing the navigation controller properties to bottom bar = non, did nothing.

How can I get rid of this grey bar at the bottom in development mode?

Grey Bottom Bar In Development Mode

Upvotes: 1

Views: 457

Answers (1)

Suhas
Suhas

Reputation: 1500

Select your navigation controller and open the attributes inspector. Make sure the Bottom Bar property is set to None.

enter image description here

You can also do the same for individual viewControllers.

Upvotes: 2

Related Questions