码迷,mamicode.com
首页 > 移动开发 > 详细

【代码笔记】iOS-动画的跳转

时间:2017-06-23 10:14:49      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:gif   工程   ade   anim   http   mtr   blog   code   sel   

一,工程图。

技术分享

二,代码。

技术分享
//点击任何处跳转到页面
-(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-动画的跳转

标签:gif   工程   ade   anim   http   mtr   blog   code   sel   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/7068212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!