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

IOS视图缩放显示动画效果

时间:2014-08-06 18:29:41      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   问题   代码   时间   res   type   

效果:视图从大--小缩放显示/小--大 (只是比例问题)


方法1.直接show出view的时候:
把下面的这段代码加到viewController或者view出现的时候就OK

  self.view.transform = CGAffineTransformMakeScale(1.0f, 1.0f);//将要显示的view按照正常比例显示出来
  [UIView beginAnimations:nil context:UIGraphicsGetCurrentContext()];
  [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];  //InOut 表示进入和出去时都启动动画
  [UIView setAnimationDuration:0.5f];//动画时间
  self.view.transform=CGAffineTransformMakeScale(0.01f, 0.01f);//先让要显示的view最小直至消失
  [UIView commitAnimations]; //启动动画
  //相反如果想要从小到大的显示效果,则将比例调换
  //UIGraphicsGetCurrentContext  里面东西很丰富。


——————————————————————————————————————————


方法2.push一个viewController时:
把下面的代码加到push的方法里面就OK
    CATransition *myTranstiton = [CATransition animation];
    myTranstiton.duration = 0.5;
    myTranstiton.type = kCATransitionFade;   
    //myTranstiton.subtype = kCATransitionFromTop;   
    [self.view.superview.layer  addAnimation:myTranstiton forKey:nil ];   
    MainViewController * _mainViewController=[[MainViewController alloc] init];
    [self presentModalViewController:_mainViewController animated:NO];

IOS视图缩放显示动画效果,布布扣,bubuko.com

IOS视图缩放显示动画效果

标签:os   io   for   问题   代码   时间   res   type   

原文地址:http://www.cnblogs.com/ranger-jlu/p/3895090.html

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