I want to create an app with 6 views like the sides of a cube, and be able to swipe in each direction to move to another side of the cube.
So I want an animation between view controllers that looks like a cube being rotated.
Some old posts (eg cube structure view controllers) mention the use of @"cube" for the transition type to use in a CATransition, and call UIViewController's transitionFromViewController:toViewController:duration:options:animations:completion method to easily animate between two view controllers.
However, the iOS 6 documentation and header files make no mention of using @"cube" or any other of the string literals mentioned in the old (iOS 5 era) posts.
And I can't find anything about that being deprecated in the iOS 6 release notes or API diffs.
The animation works, but I'm worried my app will be rejected if I use it.
Will it? What's the alternative?