我有一个加载 HTML 字符串的 UIWebView,并且可以使用 Javascript 添加内容。
有什么方法可以知道何时将某些内容(文本或图像)粘贴到 Web 视图中。
NSString *path = [[NSBundle mainBundle] pathForResource:@"htmlString" ofType:@"txt"];
NSString *htmlString = [[NSString alloc] initWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[self.ibWebView loadHTMLString:htmlString baseURL:nil];
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
NSString *jsToEncloseInEditableContainer = [NSString stringWithFormat:@"function contentedited(e){window.location='mpscontentedited://' + e.keyCode;};(function() {var body = document.body;var contentContainer = document.createElement('div');contentContainer.id = 'content';contentContainer.setAttribute('contenteditable','true');contentContainer.style.fontFamily=' Helvetica';contentContainer.style.marginTop=\"15px\";contentContainer.onkeydown = contentedited;contentContainer.onpaste=contentedited;var node;while(node=body.firstChild) {contentContainer.appendChild(node);}body.appendChild(contentContainer);%@body=undefined;delete body;contentContainer=undefined;delete contentContainer;node=undefined;delete node;})();", @"contentContainer.focus();"];
[self.ibWebView stringByEvaluatingJavaScriptFromString:jsToEncloseInEditableContainer];
}
我尝试过覆盖 UIResponder 的 paste: 方法,但它永远不会被调用。
- (void)paste:(id)sender
{
NSLog(@"paste not called");
}
我也尝试过创建一个自定义菜单按钮
UIMenuController *menu = [UIMenuController sharedMenuController];
UIMenuItem *item = [[UIMenuItem alloc] initWithTitle:@"Paste Custom" action:@selector(pasteCustom:)];
[menu setMenuItems:@[item]];
[menu setMenuVisible:YES];
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
if (action == @selector(pasteCustom:))
{
return YES;
}
return [super canPerformAction:action withSender:sender];
}
- (void)pasteCustom:(id)sender
{
NSLog(@"paste custom");
[super paste:sender]; // --> calling this causes a crash (unrecognized selector sent to instance)
}
我究竟做错了什么?
我要么想知道什么时候粘贴了某些东西,要么我想拥有一个行为类似于默认粘贴按钮的自定义菜单按钮。
提前致谢。