Deprecation of WKWebView printOperationWithPrintInfo:

I have some working Objective-C code that displays a WKWebView and allows printing that content. However, it uses the method -[WKWebView printOperationWithPrintInfo:], which the documentation says is deprecated as of macOS 10.15. However, it doesn't say why this method is deprecated, or what the recommended replacement is. The declaration in WKWebView.h does not even indicate that the method is deprecated. But as an alternative, I tried using +[NSPrintOperation printOperationWithView:printInfo]. Doing it that way just prints a blank page. So, should I keep doing it the doubtful way?

Never mind! Looking up printOperationWithPrintInfo: in the Xcode help viewer was actually taking me to WebFrameView, not WKWebView.

Deprecation of WKWebView printOperationWithPrintInfo:
 
 
Q