convert(_:to:)
Converts a point from the current window’s coordinate system to the coordinate system of another window.
Declaration
func convert(_ point: CGPoint, to window: UIWindow?) -> CGPointParameters
- point:
A point specifying a location in the logical coordinate system of the current window object.
- window:
The window defining the destination coordinate system for
point. Specifynilto convert the point to the logical coordinate system of the screen, which is measured in points.
Return Value
The point converted to the coordinate system of window.