I am developing an application, which include some animations. Iam trying to get the effect of expand/collapse the view from a particular point (e.g. x=100, y=50) in the main view. Iam using CATransition with the type kCATransitionPush and subtype is kCATransitionFromLeft. But it is expanding from extreme left, but It has to expand from the particular point. what I need to do for that effect. I used the below code for that effect, Is there any alternative to implement the targeted animation.

CATransition *animation = [CATransition animation];
animation.delegate = self;
animation.duration = 0.3f;  
animation.timingFunction = UIViewAnimationCurveEaseInOut;
animation.type = kCATransitionPush;
animation.subtype = kCATransitionFromLeft;
[[animatedView layer] addAnimation:animation forKey:@"expand"];

Thanks in advance

link|improve this question

0% accept rate
feedback

1 Answer

CATransition has startProgress and endProgress property.

set these property! and read document

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.