2

我有一个加载 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)
}

我究竟做错了什么?

我要么想知道什么时候粘贴了某些东西,要么我想拥有一个行为类似于默认粘贴按钮的自定义菜单按钮。

提前致谢。

4

2 回答 2

3

铸造不是魔术。

我再说一遍:铸造不是魔术!

它不会更改对象的运行时类型。如果它没有以 a 响应选择器UIWebView,它也不会以 a 响应它UIMenuItem。您必须使用 JavaScript 检测事件并将您的 JavaScript 函数连接到 Objective-C。使用JavaScript 事件处理程序,然后执行此处onpaste描述的操作:

<!-- snippet from your HTML string -->
<script type="text/javascript">

    function call_objc_paste(text)
    {
        window.location.href = "fakescheme://" + text;
    }

</script>

<input type="text" onpaste="call_objc_paste(this.value);" />

// Objective-C code:
webView.delegate = self;
[webView loadHTMLString:htmlStr baseURL:nil];

- (BOOL)           webView:(UIWebView *)wv
shouldStartLoadWithRequest:(NSURLRequest *)rq
            navigationType:(UIWebViewNavigationType)navT
{
    NSString *rqStr = rq.URL.absoluteString;
    NSString *scheme = @"fakescheme://";
    if ([rqStr hasPrefix:scheme]) {
        NSString *pastedText = [rqStr substringFromIndex:scheme.length];
        // potentially do somethin with pastedText, then

        return NO;
    }

    // it's not our fake URL scheme, just normal navigation
    return YES;
}
于 2013-08-19T15:21:41.607 回答
0

为后代复活这个问题:

看看我的回答:Manipulate paste content in WKWebView该解决方案使用 Swizzling 方法,也可以用于这种情况。

于 2020-04-17T15:26:32.717 回答