美文网首页
iOS缩放动画

iOS缩放动画

作者: 赤焰军少帅林殊 | 来源:发表于2017-12-16 15:05 被阅读1353次
 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
    view.backgroundColor = [UIColor redColor];
    [self.view addSubview:view];
    
    CABasicAnimation *animation=[CABasicAnimation animationWithKeyPath:@"transform.scale"];
    animation.fromValue=[NSNumber numberWithFloat:0.5];
    animation.toValue=[NSNumber numberWithFloat:1.0];
    animation.duration=1.0;
    animation.autoreverses=YES;
    animation.repeatCount=0;
    animation.removedOnCompletion=NO;
    animation.fillMode=kCAFillModeForwards;
    [view.layer addAnimation:animation forKey:@"zoom"];

相关文章

网友评论

      本文标题:iOS缩放动画

      本文链接:https://www.haomeiwen.com/subject/divswxtx.html