Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 834 Bytes

File metadata and controls

26 lines (20 loc) · 834 Bytes

CSKeyNavigationController

CSKeyNavigationController push ViewController With Key ! You can push easily to other viewcontroller and pop another with key.

Version

V0.1

Who is behind?

Get Started

AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    [self.window makeKeyAndVisible];

    UIViewController *mainVC = [UIStoryboard storyboardWithName:@"Main" bundle:nil].instantiateInitialViewController;
    CSKeyNavigationController *navC = [[CSKeyNavigationController alloc] initWithRootViewController:mainVC];

    self.window.rootViewController = navC;
    return YES;
}

License

MIT License