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];