Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 jobDisposition 设置为NSPrintPreviewJobin NSPrintInfo,但该值似乎被忽略了。打印操作不是在预览中打开文档,而是像往常一样显示打印面板。
NSPrintPreviewJob
NSPrintInfo
要直接去预览,你需要抑制打印面板:
printInfo.jobDisposition = NSPrintPreviewJob; NSPrintOperation *op = [NSPrintOperation printOperationWithView:view printInfo:printInfo]; op.showsPrintPanel = NO; [op runOperation];