UrbanApps / UAModalPanel

An animated modal panel alternative for iOS
http://code.coneybeare.net/uamodalpanel-an-open-source-modal-panel-alter
Other
877 stars 136 forks source link

Can hide navigation bar? #30

Closed pauloandreget closed 11 years ago

pauloandreget commented 11 years ago

All examples I saw, UAModalPanel hides the navigation bar, but when I have implemented in my project, the navigation bar doesn't hide. I use in TableViewController.

coneybeare commented 11 years ago

Can you show an example screenshot of what you are talking about? The example app is not setup to use a nav-bar, but that is independent of UAModalPanel

pauloandreget commented 11 years ago

I'm doing this:

UAModalPanel *modal = [[FriendSelectGroupView alloc] initWithFrame:self.view.bounds]; [self.view addSubview:modal]; [modal showFromPoint:[self.view center]];

I want hide navigation bar too.

screenshot 2013 05 08 15 01 25

coneybeare commented 11 years ago

Don't add the panel to self.view, which is only the view below the panel. Add it to a full screen view such as the navigation controller's view.