Skip to content

LinkedInAttic/LIExposeController

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LIExposeController

LIExposeController is a new navigation paradigm for iOS apps. A great example is LinkedIn's iPhone app.

LIExposeController acts as a container view controller, much like UINavigationController or UITabBarController. It manages a set of UIViewControllers as separate "stacks" so that users can easily switch between multiple screens.

Instructions

  1. Add LIExposeController.h and LIExposeController.m to your Xcode project.
  2. Create an instance like so:
    exposeController = [[LIExposeController alloc] init];
  3. Add your view controllers:
    exposeController.viewControllers = [NSArray arrayWithObjects:..., nil];
  4. Add expose controller to your view hierarchy:
    window.rootViewController = exposeController;
  5. Enjoy!

Frameworks Required

  1. UIKit
  2. Foundation
  3. QuartzCore
  4. CoreGraphics

Screenshots

Screen 1 Alt Screen 2 Alt

Authors

License

The source code is available under the Apache 2.0 license.

About

Expose style navigation for iOS apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published