I want to use CATransition animation in my apps but I don't know that how can i specify start & end position of CATransition animation.I used UITabelview to display data & select a row animation is display with details but not proper animation is display.

link|improve this question

43% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You need to wrap the transformations in NSValue instances when you set them on your CABasicAnimationinstance. For example like this:

animation.fromValue = [NSValue valueWithCATransform3d:fromTransform];
animation.toValue = [NSValue valueWithCATransform3d:toTransform];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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