nowadays lots of iOS iPhone application got a vertical menu and sliding views.
It looks like this:
I cannot find any examples in Inernet. Need your help, thnx
nowadays lots of iOS iPhone application got a vertical menu and sliding views.
It looks like this:
I cannot find any examples in Inernet. Need your help, thnx
I found it!
https://github.com/edgecase/ECSlidingViewController // ------------active as of Sept, 2014
https://github.com/mikefrederick/MFSideMenu //------------ active Sept, 2014
https://github.com/jeremieweldin/JWSlideMenu // Deprecated
https://github.com/devindoty/DDMenuController // 3 years
https://github.com/pkluz/ZUUIRevealController // link broken
https://github.com/Inferis/ViewDeck // 2 years old
https://github.com/meiwin/MWFSlideNavigationViewController // 3 years old
https://github.com/mystcolor/JTRevealSidebarDemo // discontinued
I made a video (3 parts) on youtube on how to make a sliding menu like the on you are looking for. I show you how to set up the project and get everything linked up.
http://www.youtube.com/watch?v=tJJMyzdB9uI
This uses the ECSlidingViewController, and the setup is a little different than you might expect but it works really well and is very smooth.
I have tested it with navigationcontroller as well so hope this helps!
Its explained here pretty much properly step by step those who are interested in doing so without using customised menus can check here :
http://www.raywenderlich.com/32054/how-to-create-a-slide-out-navigation-like-facebook-and-path
For iPhone you can use this one : ZUUIRevealController
This looks like a standard UITableView, which, when you click on a row, pushes another view controller's view onto the screen (but you would usually have a disclosure indicator, a ">", not a check mark in the row).
Apple has an example in the docs called TheElements. Have a look at that one and see if that's something like what you want. When you click on an element name in the table it slides another view with more information about that element over the table.