Is it possible to scale a UIView down to 0 (width and height is 0) using CGAffineTransformMakeScale?
view.transform = CGAffineTransformMakeScale(0.0f, 0.0f);
Why w
you could try:
CGAffineTransform transform = myView.transform; myView.transform = CGAffineTransformScale(transform. 0.0f, 0.0f);
or inline the whole thing.