美文网首页iOS归纳
iOS — 小动画从小到大再返回

iOS — 小动画从小到大再返回

作者: AllenYukin | 来源:发表于2016-05-19 13:08 被阅读119次
    gif.gif
     [UIView animateWithDuration:0.5f animations:^{
        giftImage.layer.transform = CATransform3DMakeScale(1, 1, 1);
        } completion:^(BOOL finished) {
            [UIView animateWithDuration:0.5f animations:^{
                giftImage.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1);
                
            } completion:^(BOOL finished) {
                bgView.hidden = YES;
            }];
        }];
    
    触发动画的方法  个人感觉懒加载会好一些 重复创建 移除会影响内存
    

    相关文章

      网友评论

        本文标题:iOS — 小动画从小到大再返回

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