Watch the quick screencast I made: Watch
Notice the cool flip animation with the window not connected. When connected, its gone.
I used the utility application template, and commented out the nav bar and bar button item code sections that was there under loadFlipsideViewController.
I then added a navigation controller, a tableView, and a window to the FlipSideView Nib.
My Problem: When I run the app in simulator, and click the little light button in the bottom corner, my table loads fine, I can drill down through my cells and navigation controller works perfectly, but that flip transition animation isn't there when I went from the light button to the tableview. It's just a instant change to the tableview.
When I remove the window from the FlipsideView NIB, and run the app, the flip transition animation shows...flips to show my table, but there is no navigation bar controller at the top of the table anymore and I can't do any drill downs.
The UINavigationController needs a window to work, but when you give it one it breaks that cool flip animation. I'm guessing having 2 windows breaks the animation and I somehow need to just point to the window that is in the MainWindow.xib ? If i'm right, how do you do that? Or is it something else?
Help is greatly appreciated.
Notice the cool flip animation with the window not connected. When connected, its gone.
I used the utility application template, and commented out the nav bar and bar button item code sections that was there under loadFlipsideViewController.
I then added a navigation controller, a tableView, and a window to the FlipSideView Nib.
My Problem: When I run the app in simulator, and click the little light button in the bottom corner, my table loads fine, I can drill down through my cells and navigation controller works perfectly, but that flip transition animation isn't there when I went from the light button to the tableview. It's just a instant change to the tableview.
When I remove the window from the FlipsideView NIB, and run the app, the flip transition animation shows...flips to show my table, but there is no navigation bar controller at the top of the table anymore and I can't do any drill downs.
The UINavigationController needs a window to work, but when you give it one it breaks that cool flip animation. I'm guessing having 2 windows breaks the animation and I somehow need to just point to the window that is in the MainWindow.xib ? If i'm right, how do you do that? Or is it something else?
Help is greatly appreciated.