컴퓨터/아이폰
화면 이동시 에니메이션 효과
k_ben
2012. 1. 18. 11:50
- (void) showURL:(NSURL *)address withTitle:(NSString *)title {
>>>>>>>>>>>> 아래 소스 추가 >>>>>>>
UIViewAnimationTransitionCurlUp : 에니메이션 유형
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.5]; 지연시간
[UIView setAnimationBeginsFromCurrentState:YES]; 현재창인지
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUpforView:self.navigationController.view cache:NO]; 유형, 대상, 겹치기
[UIView commitAnimations];
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
webView *vc = [[webView alloc] initWithNibName:@"webView" bundle:nil];
vc.title = title;
vc.webUrl = address;
[self.navigationController pushViewController:vc animated:YES];
[vc release];
}
[출처] 페이지 넣길때 에니메이션 효과주기|작성자 바우만