I am struggling with an issue regarding CGAffineTransform scale and translation where when I set a transform in an animation block on a view that already has a transform the vie
Looks like Apple UIView animation internal bug. When Apple interpolates CGAffineTransform changes between two values to create animation it should do following steps:
CGAffineTransform for each interpolation stepAssembling should be in following order:
But looks like Apple make translation after scaling and rotation. This bug should be fixed by Apple.