2012-08-29 85 views
1

我正在使用uiwebview爲ipad實現文本編輯器。我正在使用簡單的JavaScript來加粗斜體和加下劃線文字。在uiwebview中實現剪切,複製粘貼

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

上述代碼是使用用於使文本加粗。

現在我想實現剪切,複製和粘貼。我正在使用此代碼進行剪切複製和粘貼。

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Cut\")"]; [webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Copy\")"]; [webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Paste\")"]; 但它不工作。我是使用錯誤的命令參數還是有任何方法來實現它? 據我所知,有一個彈出菜單提供了所有這些功能,但我想禁用此彈出式菜單,並希望使用我自己的。

感謝

回答

相關問題