2010-03-18 5 views
17

저는 CAKeyframeAnimation을 사용하여 CGPath를 따라 뷰를 애니메이션합니다. 애니메이션이 끝나면 다른 방법을 호출하여 다른 작업을 수행 할 수 있기를 바랍니다. 이것을 할 수있는 좋은 방법이 있습니까?CAKeyframeAnimation이 완료되면 선택기를 지정하는 방법은 무엇입니까?

나는 UIView의 setAnimationDidStopSelector :를 사용하여 보았지만, 문서에서는 UIView 애니메이션 블록 (beginAnimations 및 commitAnimations) 내에서만 사용되는 것처럼 보입니다. 나는 그것을 시도해 봤지만, 효과가없는 것 같습니다.

// These have no effect since they're not in a UIView Animation Block 
[UIView setAnimationDelegate:self]; 
[UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:context:)];  

// Set up path movement 
CAKeyframeAnimation *pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"path"]; 
pathAnimation.calculationMode = kCAAnimationPaced; 
pathAnimation.fillMode = kCAFillModeForwards; 
pathAnimation.removedOnCompletion = NO; 
pathAnimation.duration = 1.0f; 

CGMutablePathRef path = CGPathCreateMutable(); 
CGPathMoveToPoint(path, NULL, self.center.x, self.center.y); 

// add all points to the path 
for (NSValue* value in myPoints) { 
    CGPoint nextPoint = [value CGPointValue]; 
    CGPathAddLineToPoint(path, NULL, nextPoint.x, nextPoint.y); 
} 

pathAnimation.path = path; 
CGPathRelease(path); 

[self.layer addAnimation:pathAnimation forKey:@"pathAnimation"]; 

사용하는 내가 그 일을해야 고려하고 있지만, 가장 좋은 방법은 아닌 것 같아 해결 방법입니다 : 여기

몇 가지 샘플 코드 (이 사용자 지정 UIView의 하위 클래스 메소드 내)입니다 NSObject의 performSelector : withObject : afterDelay :. 딜레이를 애니메이션의 지속 시간과 같게 설정하는 한 괜찮습니다.

더 좋은 방법이 있습니까? 감사!

답변

20

CAKeyframeAnimation은 CAAnimation의 하위 클래스입니다. CAAnimation에는 delegate property이 있습니다. 대리인은 -animationDidStop:finished: method을 구현할 수 있습니다. 나머지는 쉬워야합니다.

+0

고마워! 나는 문서를 볼 때 그것을 놓쳐 버렸음에 틀림 없다. – Daren

34

또는 당신은 당신의 애니메이션을 둘러싸 수 있습니다

[CATransaction begin]; 
[CATransaction setCompletionBlock:^{ 
        /* what to do next */ 
       }]; 
/* your animation code */ 
[CATransaction commit]; 

그리고 당신은해야 할 일을 처리 할 수있는 완료 블록을 설정합니다.

4

스위프트 3 구문은 answer입니다.

CATransaction.begin() 
CATransaction.setCompletionBlock { 
    //Actions to be done after animation 
} 
//Animation Code 
CATransaction.commit()