iOS小效果(2)按钮控制图片的放大缩小

来源:互联网 发布:大数据的起源是什么 编辑:程序博客网 时间:2024/05/16 15:37

按钮控制图片的放大缩小


- (IBAction)bigger:(id)sender{    [UIView beginAnimations:nil context:nil];    [UIView setAnimationDuration:1.0];    _btn.transform=CGAffineTransformScale(_btn.transform, 1.2, 1.2);    [UIView commitAnimations];}- (IBAction)smaller:(id)sender{    [UIView beginAnimations:nil context:nil];    [UIView setAnimationDuration:1.0];    _btn.transform=CGAffineTransformScale(_btn.transform, 0.8, 0.8);    [UIView commitAnimations];}


0 0
原创粉丝点击