首页 > 移动平台 > 详细

iOS中动画的简单使用

时间:2014-08-07 22:49:55      阅读:580      评论:0      收藏:0      [点我收藏+]

//***简单动画

    [UIView animateWithDuration:3 animations:^{

//      _animationView.center = CGPointMake(arc4random()%320, arc4random()%480);//改变中心点

//      _animationView.frame = CGRectMake(arc4random()%320, arc4random()%480,arc4random()%320, arc4random()%480);//改变大小 同时也会改变中心位置

        _animationView.transform = CGAffineTransformRotate(_animationView.transform, M_PI_2);//随着中心转圈90度

        

        _animationView.alpha = (arc4random()%10)/10.0;//修改透明度

        _animationView.backgroundColor = [UIColor randomColor];

    }];

 

iOS中动画的简单使用,布布扣,bubuko.com

iOS中动画的简单使用

原文:http://www.cnblogs.com/limicheng/p/3898089.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!