我有几个习惯UIMenuItems
用a中的选择做事UIWebView
.在该选择上运行操作后,我想隐藏选择句柄copy:
.
我已经尝试使用window.getSelection().removeAllRanges();
,并且工作原理window.getSelection()
不再返回任何内容,但文本选择句柄保持可见.
有没有办法删除选择和句柄?
编辑:我不需要它成为JS解决方案,但我不能通过重新加载webview来松散状态.
只需禁用并重新启用用户交互:
myWebView.userInteractionEnabled = NO; myWebView.userInteractionEnabled = YES;