vote up 2 vote down star
3

I don't really like that flip-transition. It's boring. I'd like to see something cool, like water effect, fog, or whatever. Is there something available or do I have to (re)invent the wheel for that?

flag

58% accept rate

2 Answers

vote up 1 vote down

The iPhone SDK comes with a whole bunch of built in animations. rpetrich listed some of them and I do believe that there are more.

For example using the UINavigationController class provides stock animation which, while simple, is quite effective.

link|flag
what's "stock animation"? – Thanks May 5 at 21:00
Animations that are built in to the SDK. – Frank May 6 at 14:45
vote up 4 vote down

The animation types available via [CATransition animation] are:

  • kCATransitionFade
  • kCATransitionPush
  • kCATransitionMoveIn
  • kCATransitionReveal
  • @"suckEffect"
  • @"spewEffect"
  • @"genieEffect"
  • @"unGenieEffect"
  • @"rippleEffect"
  • @"twist"
  • @"tubey"
  • @"swirl"
  • @"charminUltra"
  • @"zoomyIn"
  • @"zoomyOut"

The transition types available via [UIView setAnimationTransition:forView:cache:] are:

  • UIViewAnimationTransitionFlipFromLeft
  • UIViewAnimationTransitionFlipFromRight
  • UIViewAnimationTransitionCurlUp
  • UIViewAnimationTransitionCurlDown
link|flag
1  
the first list is hidden API, right? What's apple gonna do when I use that? I'm pretty sure I've seen once an App using the rippleEffect. Exactly the same one from the foto app when watching the slide show (old iPod touch). – Thanks May 5 at 20:58
1  
The transitions defined by kCATransition* (and their subtypes) are public, the others are hidden. If you don't want to use private APIs you can try animating the transform property of your CALayer to imitate some of the hidden transitions. – rpetrich May 5 at 21:06
1  
Do you have experience using the hidden API transitions? Did Apple still accept them? I wonder if they would even be able to know that you use hidden api... – Thanks Jul 22 at 11:39
1  
It's hit and miss from what I understand. I haven't used any private CATransitions in any of my apps, but there are definitely some up on the store that use them. It's a relatively safe private API to use because if you use a transition type that is unavailable, UIKit fails gracefully by showing a fade transition instead of crashing. – rpetrich Jul 22 at 21:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.