WKWebKit Mac OS NSPrintOperation

Mob*_*ord 8 macos objective-c nsprintoperation wkwebview

WebKit 1暴露了WebFrameView我可以进行所有打印操作.

- (void)webView:(WebView *)sender printFrameView:(WebFrameView *)frameView {
  NSPrintOperation *printOperation = [frameView printOperationWithPrintInfo:[NSPrintInfo sharedPrintInfo]];
  [printOperation runOperation];
}
Run Code Online (Sandbox Code Playgroud)

使用WKWebKit API,我似乎无法弄清楚如何执行类似的操作或抓取哪个视图进行打印.我所有的努力都提出了空白页面.

mar*_*rux 10

令人惊讶的是,WKWebView尽管旧版 WebView 已被弃用,但它仍然不支持在 macOS 上打印。

查看https://github.com/WebKit/webkit/commit/0dfc67a174b79a8a401cf6f60c02150ba27334e5,打印是在多年前作为私有 API 实现的,但由于某种原因,尚未公开。如果您不介意使用私有 API,则可以使用以下命令打印WKWebView

public extension WKWebView {
    // standard printing doesn't work for WKWebView; see http://www.openradar.me/23649229 and https://bugs.webkit.org/show_bug.cgi?id=151276
    @available(OSX, deprecated: 10.16, message: "WKWebView printing will hopefully get fixed someday – maybe in 10.16?")
    private static let webViewPrintSelector = Selector(("_printOperationWithPrintInfo:")) // https://github.com/WebKit/webkit/commit/0dfc67a174b79a8a401cf6f60c02150ba27334e5


    func webViewPrintOperation(withSettings printSettings: [NSPrintInfo.AttributeKey : Any]) -> NSPrintOperation? {
        guard self.responds(to: Self.webViewPrintSelector) else {
            return nil
        }

        guard let po: NSPrintOperation = self.perform(Self.webViewPrintSelector, with: NSPrintInfo(dictionary: printSettings))?.takeUnretainedValue() as? NSPrintOperation else {
            return nil
        }

        // without initializing the print view's frame we get the breakpoint at AppKitBreakInDebugger:
        // ERROR: The NSPrintOperation view's frame was not initialized properly before knowsPageRange: returned. This will fail in a future release! (WKPrintingView)
        po.view?.frame = self.bounds

        return po
    }
}
Run Code Online (Sandbox Code Playgroud)

您可以NSDocument通过添加以下内容将其作为子类的默认打印操作:

    override func printOperation(withSettings printSettings: [NSPrintInfo.AttributeKey : Any]) throws -> NSPrintOperation {
        return myWebView.webViewPrintOperation(withSettings: printSettings) ?? try super.printOperation(withSettings: printSettings)
    }
Run Code Online (Sandbox Code Playgroud)