My app should display a login modal view, and once authentified, redirect on a SplitView.
For now, i'm using the method that change the rootView in the app delegate. So, in the loginController, i do this :
[[[[UIAppDelegate window ] subviews] objectAtIndex:0] removeFromSuperview];
And after that, i load my splitViewController and place it in the rootViewController property.
It's working. But i would like to make a transition between the two views, and i've absolutely no idea how to make this happen.
Any clue ? Thanks