¿Es posible escalar un UIView a 0 (ancho y alto es 0) usando CGAffineTransformMakeScale?Escala UIView a 0 usando CGAffineTransformMakeScale
view.transform = CGAffineTransformMakeScale (0.0f, 0.0f);
¿Por qué arrojaría un error de "<Error>: CGAffineTransformInvert: singular matrix.
"?
Actualización: Hay otra manera de escalar por una UIView a 0
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
view.frame = CGRectMake(view.center.x, view.center.y, 0, 0);
[UIView commitAnimations];