Floating crash when presenting UIPrintInteractionController on iOS 16

Starting iOS 16 seeing some crashes related to pdf printing in the crash reporter. It looks like the issue is not so frequent. Also, I'm unable to reproduce the crash. Looks like the app crashes when the print preview dialog is opening. According to crash reports, there are some crashes on different iOS 16 versions: 16.0.0, 16.0.2, and 16.0.3.

The printing code itself is trivial:

let printInfo = UIPrintInfo.printInfo()
printInfo.jobName = "Printing Job Name"

self.printViewController = UIPrintInteractionController.shared
self.printViewController?.printInfo = printInfo
self.printViewController?.printingItem = pdfURL
self.printViewController?.present(from: barButtonItem, animated: true) { (controller, completed, error) in
    self.printViewController = nil
}

There is stack trace I got from the Organizer:

Floating crash when presenting UIPrintInteractionController on iOS 16
 
 
Q