I can't seem to get the execCommand for cut, copy, paste to work in a UIWebView that has contentEditable set to true. I am able to select the text using selectAll command but cut, copy, and paste do not work.
This is the code I'm using:
[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand('cut', false, null)"];
Is there something else I need to do to allow clipboard operations to work?