如何获取 UIWebView 中所选文本的坐标(CGRect)?
我有简单的 UIWebView 和加载的 html。 我想显示 PopoverView 指向所选文本。 我可以获取 UIMenuController 的 menuFrame 并使用它的矩形,但结果在屏幕的角落并不像我需要的那么准确。 我可以计算屏幕尺寸并获取 menuFrame 矩形,然后我可以假设可以在哪里找到选择,但我想确切地知道所选文本在哪里。 一般情况下可以吗?
I have simple UIWebView with loaded html.
I want to show the PopoverView pointed to the selected text.
I can get the menuFrame of the UIMenuController and use its rect, but the result isn't as accurate at the corners of the screen as I need.
I can calculate the screen size and get menuFrame rect and then I can suppose where the selection may be found, but I want exactly know where is the selected text.
Is it generally possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在所选文本的范围对象上使用 javascript 函数 getBoundingClientRect()。
我就是这样做的:
在 UIWebView 的类别中,您可以像这样使用它:
You can use the javascript function getBoundingClientRect() on the range object of the selected text.
This is how I do it:
and in a category on UIWebView, you could use it like such: