How to get the actual size of transformed CALayer?
问题 I have a 200x200 pixel CALayer instance to which I've applied two transformations: scaled down to 50% applied a 3D perspective Now I want to align the transformed layer with another layer. To do that I need the size (width and height) of the transformed layer. The problem is that layer.bounds still returns 200x200 for the layer, but because of the perspective transformation the actual visible width is less and the height more than 200 . The bounds of the presentation layer return 0 , by the