I'm just wondering what this part means.
I understand that modifying transform affects the subviews, but I don't know why this changes affects only final rendering and even ignores superview's transform.The coordinate system of each subview builds upon the coordinate systems of its ancestors. So when you modify a view’s transform property, that change affects the view and all of its subviews. However, these changes affect only the final rendering of the views on the screen. Because each view draws its content and lays out its subviews relative to its own bounds, it can ignore its superview’s transform during drawing and layout.
Could you explain why it happens with example or other article?