LIExposeController
Expose style navigation for iOS apps
Install / Use
/learn @LinkedInAttic/LIExposeControllerREADME
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
- Add LIExposeController.h and LIExposeController.m to your Xcode project.
- Create an instance like so: <pre><code>exposeController = [[LIExposeController alloc] init];</code></pre>
- Add your view controllers: <pre><code>exposeController.viewControllers = [NSArray arrayWithObjects:..., nil];</code></pre>
- Add expose controller to your view hierarchy: <pre><code>window.rootViewController = exposeController;</code></pre>
- Enjoy!
Frameworks Required
- UIKit
- Foundation
- QuartzCore
- CoreGraphics
Screenshots

Authors
License
The source code is available under the Apache 2.0 license.
