TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Michael Kamphausen, cg, Tino Rachui, Mathias Köhnke, Mathias Koehnke, Nico Schümann, Heiko Wichmann, Stephan Lerner, Famara Kassama.
Custom UINavigationController subclass which adds support for automatic show/hide of the navgationBar based on the apl_hidesNavigationBarWhenPushed-Property on UIViewController.
Import header file:
#import "APLNavigationController.h"
To use the APLNavigationController create a new instance like you would do with the standard UINavigationController
UINavigationController *navController = [[APLNavigationController alloc] initWithRootViewController:yourRootViewController];
In your viewController implement:
- (BOOL)apl_hidesNavigationBarWhenPushed
return YES -> Hide navigationBar
return NO -> Show navigationBar (default)