Note that there are some explanatory texts on larger screens.

plurals
  1. POiOS "slide in from left/right" view animations
    text
    copied!<p>My iOS6 app has a multi-level table view whose leaf nodes open up separate views. The animation from the first level of the table slides the old view out to the left and the new view in from the right. I'd like to also use this slide-in animation when transitioning from a table view to a non-table view. How? </p> <p>Here's more info:</p> <p>On the first level of the table view, there are disclosure Indicators <img src="https://i.stack.imgur.com/po5pi.jpg" alt="enter image description here">. When one is clicked, the first level of the table slides off to the left and the second level view slides in from the right. Good. </p> <p>On the second level of the table, there are Detail Disclosure Buttons <img src="https://i.stack.imgur.com/lowGk.jpg" alt="enter image description here"> which take the user to a detail view for that element in the table. </p> <p>I'd like to offer the same animation here too: the table view should slide off to the left and the new view should slide in from the right. </p> <p>First, am I correct that this is the correct animation to use in this case?</p> <p>Second, do you know why this "slide in" animation isn't in the standard view animations in <a href="http://developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview/uiview.html" rel="nofollow noreferrer"><code>UIViewAnimationTransition</code></a> below? </p> <pre><code>typedef enum { UIViewAnimationTransitionNone, UIViewAnimationTransitionFlipFromLeft, UIViewAnimationTransitionFlipFromRight, UIViewAnimationTransitionCurlUp, UIViewAnimationTransitionCurlDown, } UIViewAnimationTransition; </code></pre> <p>Finally, if I do want to use the same slide in animation that table views use, but it's not available as one of the standard views, how should I add this animation when transitioning between a table view and a non-table view?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload