views:

26

answers:

1

What are all the valid animationID strings for the beginAnimations:: class method on UIView?

+1  A: 

The animationID is any string you decide to use. It's for identifying the animation in the animations's willStart and didStop delegate methods.

From the documentation:

animationID Application-supplied identifier for the animations within a block that is passed to the animation delegate messages—the selectors set using the setAnimationWillStartSelector: and setAnimationDidStopSelector: methods.

Robot K