CGAffineTransformScale
[UIViewbeginAnimations:nilcontext:nil];
[UIViewsetAnimationDuration:0.5];
_imgView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.5, 0.5);
[UIViewcommitAnimations];
以上代码 可以让 _imgView 在0.5秒之内,大小收缩到一半(scale 0.5 0.5)