ios - How to create CGAffineTransform from CGAffineTransformMake? -
I went through the apple document for 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.
Can someone tell me about the parameters?
CGAffineTransformMake Rotation / Scale / Translation methods that provide a lot of cleaners and clear interfaces for standard tasks that you want to complete. You can also chain changes with CGAffineTransform Rotate / Scale / Translate so that you can create the same complex conversion (or add for the previous conversion) .
Comments
Post a Comment