ios - How to create CGAffineTransform from CGAffineTransformMake? -
I went through the apple document for Can someone tell me about the parameters? You can also chain changes with CGAffineTransform . But I was not able to understand that the values for the
CGAffineTransformMake method for CGAffineTransform are required.
CGAffineTransform requires six values to be passed. They are A, B, C, D, Tx and T.
CGAffineTransformMake Rotation / Scale / Translation methods that provide a lot of cleaners and clear interfaces for standard tasks that you want to complete.
CGAffineTransform Rotate / Scale / Translate so that you can create the same complex conversion (or add for the previous conversion) .
Comments
Post a Comment