Develop

[ios] ViewController Push할 때 애니메이션 효과

by hooni posted Oct 23, 2015
?

Shortcut

PrevPrev Article

NextNext Article

ESCClose

Larger Font Smaller Font Up Down Go comment Print

이렇게 하믄 됨 ㅋㄷ;

 

ExistingAccountViewController *viewController = [[ExistingAccountViewController alloc] initWithNibName:NSStringFromClass([ExistingAccountViewController class]) bundle:nil];

CATransition *transition = [CATransition animation];
transition.duration = 0.5;
transition.type = kCATransitionFade;
transition.subtype = kCATransitionFromTop;

[self.navigationController pushViewController:viewController animated:YES];
[self.navigationController.view.layer addAnimation:transition forKey:kCATransition];