在uiwebview中实现剪切,复制粘贴

时间:2012-08-29 12:59:49

标签: iphone

我正在使用uiwebview为ipad实现一个文本编辑器。我使用简单的javascript来粗体斜体和下划线文本。

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Bold\")"];

以上代码用于使文本变为粗体。

现在我想实现剪切,复制和粘贴。我正在使用此代码进行剪切复制和粘贴。

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Cut\")"]; [webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Copy\")"]; [webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Paste\")"]; 但它不起作用。我使用错误的命令参数还是有任何方法来实现它? 我知道有一个弹出菜单提供了所有这些功能,但我想禁用这个弹出菜单,并希望使用我自己的。

由于

1 个答案:

答案 0 :(得分:0)

Disabling user selection in UIWebView

在这里你可以找到禁用复制过去的菜单项

由于