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.
- Add LIExposeController.h and LIExposeController.m to your Xcode project.
- Create an instance like so:
exposeController = [[LIExposeController alloc] init];
- Add your view controllers:
exposeController.viewControllers = [NSArray arrayWithObjects:..., nil];
- Add expose controller to your view hierarchy:
window.rootViewController = exposeController;
- Enjoy!
- UIKit
- Foundation
- QuartzCore
- CoreGraphics
The source code is available under the Apache 2.0 license.