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

CABasicAnimation 缩放动画

时间:2015-05-01 11:55:15      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

   keyPath分为:transform.scale     transform.scale.x      transform.scale.y      transform.scale.z

 

   CABasicAnimation* scale = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    scale.fromValue = [NSNumber numberWithFloat:1];
    scale.toValue   = [NSNumber numberWithFloat:2];
    scale.duration = 1;
    scale.autoreverses = YES;
    scale.repeatCount = 0;

    view.layer addAnimation:scale forKey:@"scale"];

CABasicAnimation 缩放动画

标签:

原文地址:http://www.cnblogs.com/417460188dy/p/4470501.html

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