我正在使用uiwebview为ipad实现一个文本编辑器。我使用简单的javascript来粗体斜体和下划线文本。
[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Bold\")"];
以上代码用于使文本变为粗体。
现在我想实现剪切,复制和粘贴。我正在使用此代码进行剪切复制和粘贴。
[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Cut\")"];
[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Copy\")"];
[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Paste\")"];
但它不起作用。我使用错误的命令参数还是有任何方法来实现它?
我知道有一个弹出菜单提供了所有这些功能,但我想禁用这个弹出菜单,并希望使用我自己的。
由于