UrbanApps / UAModalPanel

An animated modal panel alternative for iOS

Home Page:http://code.coneybeare.net/uamodalpanel-an-open-source-modal-panel-alter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can hide navigation bar?

pauloandreget opened this issue · comments

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.

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

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

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.