Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IOS new Facebook iPhone App UISplitViewController Layout [duplicate]

Possible Duplicate:
SplitView like Facebook app on iPhone

another break away .net developer here now trying to get used to the world of IOS.

I like the layout of the new Facebook iPhone app (October 2011), and want to implement something similar in an app I am doing. I know that the UISplitterControl is not available on iPhone but Facebook seem to have pulled a little magic to make it appear so on their new app.

In Facebook's implementation it looks to me that they have used a UINavigationController which slides to the right by x when the NavigationBar icon is tapped thus exposing a view underneath with the menu items.

Would appreciate if someone could help me work this out as the solution would also be a great learning curve.

I've tried setting a UINavigationController as the AppDelegate window root view controller, then using initwithframe to load a custom view which includes the menu items as a subview hidden behind the UINavigationcontroller root view. Then when the UINavgationController menu item button is clicked slide the NavigationController to the right thus exposing the view underneath with menu items.This presents two problems, first that the subview positioning doesn't work and also how can I slide the actual UINavigationController to the right to expose the menu view underneath.

Please help!

like image 880
Lisa Young Avatar asked Oct 17 '11 21:10

Lisa Young


1 Answers

Might also want to check out my implementation on Github. It's specifically designed to resemble Facebook's implementation as much as possible (from a technical point of view). Also it leverages iOS 5's new UIViewController-Containment features, which most others don't. Thus it works flawlessly in both landscape and portrait modes. It's universal of course and highly flexible. One class only. The way you use it is similar to any other Apple made controller.

like image 106
pkluz Avatar answered Sep 21 '22 13:09

pkluz