728x90
CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:0.5];
[self.reply_arrow layer].transform = CATransform3DMakeRotation(3.14 * 1, 0, 0, 1);//화살표 그림이 돌아갑니다.
[UIView commitAnimations];
728x90
'Developer > iOS' 카테고리의 다른 글
[iOS] 콜백 메소드 만들기/호출하기 (3) | 2011.06.16 |
---|---|
[iOS]기기가 가로인지 세로인지 판단하는 방법. (2) | 2011.06.16 |
[iOS] UISwipeGestureRecognizer 등록하는 법 (1) | 2011.06.07 |
[iOS] 페이지 넘기는 효과 (1) | 2011.06.07 |
[iOS] 상위 뷰 컨트롤러 가져오는 법. super viewcontroller (0) | 2011.05.31 |