1

I would like to know how to create a 'side' View Controller. They are becoming increasingly popular...

Apps such as Facebook and Words with Friends use these on IOS, these are two extremely popular apps so will not upload a picture for this.

When clicking on the = icon in the top navigation a side navigation/menu theme view controller is shown on the side, whilst the navigation controller current view controller is moved slightly to the other side. For example, you can still see the original view controller slightly on the right side, whilst a list of available options are shown.

Does anyone know how this would be achieved or a tutorial of how to accomplish this?

StuartM
  • 6,743
  • 18
  • 84
  • 160
  • 1
    Duplicate: http://stackoverflow.com/questions/7989020/whats-the-best-way-to-develop-a-sideswipe-menu-like-the-one-in-facebooks-new-i – Ben Trengrove Oct 18 '12 at 21:46

1 Answers1

2

This github project seems to be what you are looking for. Similar to what Facebook has:

https://github.com/edgecase/ECSlidingViewController

github page picture example

agile_heresy
  • 418
  • 2
  • 12
  • 1
    simplest control to implement – Jay Gajjar Jun 26 '13 at 13:21
  • 1
    I actually went through a whole load of these back when the question was posted and found this ECSlidingViewController and this was what I went with, exactly the functionality I was looking for and easiest to implement in the way I needed. Thanks – StuartM Jun 28 '13 at 09:50