Total newb here.
What is the difference between this
_myUIProgressView.transform = CGAffineTransformScale(_myUIProgressView.transform, 1.0, 0.3);
and this:
[_myUIProgressView setTransform:CGAffineTransformMakeScale(1.0, 0.3)];
besides the brevity. Why would you favor one over the other?