I have a view controller that has the following hierarchy:
UIViewController
|
| -view
| -presentView (UIView)
| -stagedView (UIView)
| -UIToolbar
I use the transitionFromView:toView:duration:options:completion: method to animate a page presentView for sharing between presentView and stagedView . Presented and delivered presentation covers only most of the screen, and at the bottom - UIToolbar. When I use the UIViewAnimationOptionTransitionCurlUp transition, it animates the entire root view (including the toolbar), and not just the two views.
[UIView transitionFromView:self.presentView toView:self.stagedView duration:0.5f options:UIViewAnimationOptionTransitionCurlUp completion:^ (BOOL finished) { if (finished) {
Is there a way to just bring two subtitles to life by leaving the toolbar alone? If so, how?
Wayne hartman
source share