How to print an NSOutlineView with NSVIew.printView
问题 I want to print an NSOutlineView. The view is a subview of a window on screen. I noticed the NSView api call printView. So I tried it in a simple minded fashion. In my AppDelegate I have a call: @IBAction func doPrint(_ sender: Any?) { globalOutlineCntrl?.outlineView.printView(self) } So with the window containing the outline on-screen, I issued the doPrint call. The outline on screen looks like this: The doPrint call seems to work, but prints this: Is there anyway to make this work? If not