Apple discusses how to have a container view controller transition between two child view controllers in this document. I would like to animate a simple push vertical slide up identical to UIModalTransitionStyleCoverVertical
in UIModalTransitionStyle
. However, transitionFromViewController
only allows use of UIViewAnimationOptions
, not transition styles. So how would one animate sliding a view up?
It's odd that to transition between child view controllers you can't call a simple push method similar in UINavigationController
to animate the transition.