码迷,mamicode.com
首页 > 其他好文 > 详细

pushViewController自定义动画

时间:2016-01-15 23:03:18      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

实现的主要代码如下:

CATransition *transition = [CATransition animation];  

transition.duration = 1.0f;  

transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];  

transition.type = @"cube";  

transition.subtype = kCATransitionFromRight;  

transition.delegate = self;  

[self.navigationController.view.layer addAnimation:transition forKey:nil];  

FirstViewController *firstViewController = [[DemoViewController alloc]init];  

[self.navigationController pushViewController: firstViewController animated:YES];   


其中的动画类型有:

  1. animation.type = kCATransitionFade;    
  2. animation.type = kCATransitionPush;   
  3. animation.type = kCATransitionReveal;  
  4. animation.type = kCATransitionMoveIn;  
  5. animation.type = @"cube";  
  6. animation.type = @"suckEffect";  
  7. animation.type = @"oglFlip";  // 页面旋转
  8. animation.type = @"rippleEffect"; //水波纹
  9. animation.type = @"pageCurl";  
  10. animation.type = @"pageUnCurl";  
  11. animation.type = @"cameraIrisHollowOpen";  
  12. animation.type = @"cameraIrisHollowClose";  

返回按钮的动画实现事件

    1. // 修改导航栏的 左边的标题  
    2. self.navigationItem.leftBarButtonItem=[[UIBarButtonItem alloc] initWithTitle:@"返回" style:UIButtonTypeRoundedRect target:self action:@selector(back)];  

pushViewController自定义动画

标签:

原文地址:http://www.cnblogs.com/56ik/p/5134513.html

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