4

I want to implement the type of functionality as seen in the image below. I do not know if this is a UISplitViewController that has its trait collection overridden to display side-by-side in portrait orientation or if this is two UITableViewControllers using a custom animation object. Is it possible to achieve this with a UISplitViewController or is this simply using an animation object? Side-by-side or the primary (master) view controller overlaying the secondary (detail) view controller is something I am also interested in.

enter image description here

Michael
  • 6,561
  • 5
  • 38
  • 55

1 Answers1

4

Is this what you're looking for? SplitView like Facebook app on iPhone

I'm using SWRevealViewController and it's great.

Github, Tutorial

Community
  • 1
  • 1
Corwin Newall
  • 508
  • 8
  • 18
  • Is there a way to do this without using a third-party library? – NAbbas Mar 14 '16 at 08:30
  • Only by implementing it yourself, I suppose. `SWRevealViewController`, and the myriad alternatives out there, are free to use in commercial projects. I'd thoroughly recommend using a third-party library as there are no legal worries. Also, if you want, you can read the source code and see how they've done it, and get ideas on how you might do it yourself. – Corwin Newall Mar 22 '16 at 23:02