代码笔记iOS-动画的跳转
Posted 菜鸟and小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记iOS-动画的跳转相关的知识,希望对你有一定的参考价值。
一,工程图。
二,代码。
//点击任何处跳转到页面
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CATransition* animTrans = [CATransition animation] ;
animTrans.type = kCATransitionFade;
animTrans.duration = 1;
animTrans.timingFunction =[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
[self.navigationController.view.layer addAnimation:animTrans forKey:nil];
FirstViewController *first = [[FirstViewController alloc]init];
[self.navigationController pushViewController:first animated:NO];
}
以上是关于代码笔记iOS-动画的跳转的主要内容,如果未能解决你的问题,请参考以下文章