如何将UIView坐标ULO转换为CGContext坐标LLO?
我有一张用户在点(20,20)上点击的图像 iPhone 6 plus上CGContext坐标中的这一点应为(20 647) 如果我使用上下文。
guard let context = UIGraphicsGetCurrentContext() else { return}
let testPoint = CGPoint(x: 20, y: 20)
print(context.convertToUserSpace(testPoint))
这将打印
(6.66666666666667, 399.333333333333)
它接缝是按设备比例划分点 有没有一种方法可以将点或从ULO直接更改为LLO?