What I want is to create iPhone application.
Everything will be static data. What I want is show menu (as Menu 1, Menu 2, …) one by one at the down side. Once I click on Menu 1, I will display details of Menu 1 on next screen.
Right now what I have done is created home page. There I have button saying Menu. Once I click on that button, I am going to another screen which is TableViewController. Any idea how to show menu buttons there?
Any idea or suggestion would be greatful.
Thanks in advance to all…
It seems that you are looking for
UITabBarController, check the reference.If you don’t want use the
UITabBarControlleryou could insert your “home page” controller into a UINavigationController and push your viewcontrollers with someIBActionassociated to your buttons, or otherwise display your controllers in modal way.