I am really having issues with this "fantastic" splitviewcontroller... I am building an app for iPad that uses a splitviewcontroller since it is the logic way to use the App. However, I am worried that my app will be rejected because my rootviewcontroller in my storyboard is not the splitview.. My initial controller is a "main page" with some buttons that can take the user to specific parts of the app. I do this by changing the rootviewcontroller of my app delegate in the different segues from the buttons on the main menu page... I cannot get the segues to work out of the box to a splitviewcontroller. But actually, I don't like this approach, I just don't know what else to do.. I need the user to log in when the app launches, and my main page just displays this log in page modally.. This logic seems so simple to me coming from the JSP world, but I feel limited... maybe I just don't get it yet :)
Can I use 1 splitviewcontroller with different master/detail viewcontrollers, and what is the best way to change those ? Should I instead make my Menu page appear modally on top of the splitview from appdidfinishlaunching, and then dismiss itself(also a no no, since it is always the view that is presenting that should take it away) ?
I guess my question is, what should be the design of an App that is supposed to have a menu page with login, and then 2 or more "splitviews" ?
I am using IOS5 and storyboards, and would like to keep doing that :)
The pain of it all is that maybe i can "get it to work" but i like clean and proper code, so i hate doing things "the wrong way"...
Thank you very much.