현재 UIView의 Animation 중이라면 특정 액션시 Stop 하는 방법에 대해서 알아보자...
간단하다.....
소스 코드를 보자
//1. 먼저 UIView Animation을 만들고 진행하자....
[UIView beginAnimations:@"test" context:itemView];
[UIView setAnimationRepeatAutoreverses:YES]; // important
[UIView setAnimationRepeatCount:20];
[UIView setAnimationDuration:0.25];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(testCallt:)];
//2. 특정 액션에서 UIView Animation Stop 하고 싶으면 아래 코드를 넣자..그러면 중지된다~
[itemView.layer removeAllAnimations];
'프로그래밍 > iOS' 카테고리의 다른 글
UIView 화면 터치시 single tap , double tap에 대한 구현 (0) | 2011.06.02 |
---|---|
NSMutableDictionary 사용법 및 삽입 ,삭제에 대해서 알아보자 (0) | 2011.06.02 |
화면상에서 터치 이벤트 발생시 View에서 무시하기 방법 (0) | 2011.06.02 |
Static Class 만드는 방법 (0) | 2011.06.02 |
아이폰에서 아이콘 삭제시 나오는 좌/우로 움직이는 애니메이션 효과 구현하기 (0) | 2011.06.02 |