是否可以使用 CGAffineTransformMakeScale 将 UIView 缩小到 0(宽度和高度为 0)?
view.transform = CGAffineTransformMakeScale(0.0f, 0.0f);
为什么这会抛出 " <Error>: CGAffineTransformInvert: singular matrix.
" 的错误?
更新:还有另一种将 UIView 缩小到 0 的方法
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
view.frame = CGRectMake(view.center.x, view.center.y, 0, 0);
[UIView commitAnimations];