I would like to apply multiple transforms to a UIView
(or subclass of UIView
), such as translate, rotate, and scale. I know that two transforms can be applied with CGAffineTransformConcat
, but how do I do it if I have three or more transforms?
I have seen these questions:
but these questions are asking something different, and the given answers just talk about applying two transforms with CGAffineTransformConcat
. Also, they use Objective-C rather than Swift.