CGAffineTransformScale
时间:2014-05-19 17:15:58
收藏:0
阅读:207
[UIViewbeginAnimations:nilcontext:nil];
[UIViewsetAnimationDuration:0.5];
_imgView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.5, 0.5);
[UIViewcommitAnimations];
以上代码 可以让 _imgView 在0.5秒之内,大小收缩到一半(scale 0.5 0.5)
评论(0)