🔥 한정 프로모션 · 인기 제품 모음

최대 70% 할인
추천템만 빠르게 확인하세요

진테크랩에서 전문 리뷰 기반 인기 제품
놓치기 아까운 할인·프로모션 상품을 정리했습니다.

최대 70% 할인
🎁 프로모션 상품
📝 전문 리뷰 확인
🏆 인기 제품 추천
할인 제품 보러가기 →
놓치면 아쉬운 추천 제품을 한눈에 확인해보세요.

blog_thumbnail_ani

//  뷰 이동 1
UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:2];
CGAffineTransform transform = CGAffineTransformMakeTranslation(0.0, 60.0);
[[self view] setTransform:transform];
CGAffineTransform transform2 = CGAffineTransformMakeTranslation(0.0, -60.0);
[[self view] setTransform:transform2];
[UIView commitAnimations];



//  뷰 이동  2
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:0.3];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
self.view.frame = CGRectMake(0,480,320,480);
self.view.transform = CGAffineTransformIdentity;  
[UIView commitAnimations];


//책장 넘기기, 화면 반전하기
[swapView addSubview:animationView1];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.75];
[UIView setAnimationDelegate:self];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:swapView cache:YES];
[UIView commitAnimations];



//알파값
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
self.alpha = 0.0;
[UIView commitAnimations];
[self removeFromSuperview];

출처 : http://blog.naver.com/PostView.nhn?blogId=hana_815&logNo=60112080789&viewDate=&currentPage=1&listtype=0

By Jin

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다