APLNavigationController 0.0.1

APLNavigationController 0.0.1

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.



  • By
  • Tobias Conradi

Custom UINavigationController subclass which adds support for automatic show/hide of the navgationBar based on the apl_hidesNavigationBarWhenPushed-Property on UIViewController.

Installation

Usage

Import header file:

#import "APLNavigationController.h"

NavigationController

To use the APLNavigationController create a new instance like you would do with the standard UINavigationController

UINavigationController *navController = [[APLNavigationController alloc] initWithRootViewController:yourRootViewController];

Automatic show/hide navigationBar

In your viewController implement:

- (BOOL)apl_hidesNavigationBarWhenPushed

return YES -> Hide navigationBar
return NO  -> Show navigationBar (default)