Hi, my app has a menu with an assortment of buttons at the bottom, each button inserts a new subview from one of my xibs, underneath the menu. The views have an order they are supposed to go in(think powerpoint presentation) though the user can touch a certain button to go to any of them.
There are also next and previous buttons.
I am wondering how I should reference the views in my menu's view controller such that I can insert the proper "next" and "previous" view, which of course depends on which one is currently showing. Also I need to remove the current subview after inserting the new one, whichever that may be.
Thanks!