您的位置:首页 > 移动开发 > IOS开发

iOS点击button放大后缩小效果

2017-08-25 17:53 393 查看
转载请注明出处:http://blog.csdn.net/chen_gp_x

-(void)buttonClick{  

    button.transform = CGAffineTransformIdentity;  

    [UIView animateKeyframesWithDuration:0.5 delay:0 options:0 animations: ^{  

        [UIView addKeyframeWithRelativeStartTime:0 relativeDuration:1 / 3.0 animations: ^{  

              

            button.transform = CGAffineTransformMakeScale(1.5, 1.5);  

        }];  

        [UIView addKeyframeWithRelativeStartTime:1/3.0 relativeDuration:1/3.0 animations: ^{  

              

            button.transform = CGAffineTransformMakeScale(0.8, 0.8);  

        }];  

        [UIView addKeyframeWithRelativeStartTime:2/3.0 relativeDuration:1/3.0 animations: ^{  

              

            button.transform = CGAffineTransformMakeScale(1.0, 1.0);  

        }];  

    } completion:nil];  

}  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: