iOS horizontal SlideView with vertical menu

前端 未结 5 854
悲哀的现实
悲哀的现实 2020-12-02 06:37

nowadays lots of iOS iPhone application got a vertical menu and sliding views.

It looks like this:

\"ent

相关标签:
5条回答
  • 2020-12-02 07:10

    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!

    0 讨论(0)
  • 2020-12-02 07:14

    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.

    0 讨论(0)
  • 2020-12-02 07:23

    For iPhone you can use this one : ZUUIRevealController

    0 讨论(0)
  • 2020-12-02 07:25

    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

    0 讨论(0)
  • 2020-12-02 07:25

    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

    0 讨论(0)
提交回复
热议问题