View transitions in the context of a view controlled by a navigation controller
I have an app with a navigation controller, and when the user clicks a button I want the view to flip over and allow them to write in a textField. I got the animation working, but the navigation bar stays visible. I've tried performing the animation on different parts of the initial view, such as: self.view, [self.view superview], self.navigationController.view, [self.navigationController.view superview] but the navigation bar stays there... I could just hide it but then it just suddenly disappears. I also tried self.view.window etc... Doesn't seem to make a difference
Any suggestions?
|