Answers:
这很简单:
[aView convertPoint:localPosition toView:nil];
...将局部坐标空间中的点转换为窗口坐标。您可以使用此方法来计算窗口空间中的视图原点,如下所示:
[aView.superview convertPoint:aView.frame.origin toView:nil];
2014编辑:看着Matt__C评论的流行,似乎有理由指出坐标...
aView.frame.origin
为我效劳。我费了些力气才意识到我的观点的超级观点本身没有超级观点。
[view.superview convertPoint:view.frame.origin toView:[UIApplication sharedApplication].keyWindow.rootViewController.view]
在Swift中:
let globalPoint = aView.superview?.convertPoint(aView.frame.origin, toView: nil)