我需要一种方法,使用已知的printerId强制将选定的打印机显示在UIPrintInteractionController上。

注意:为了进行测试,我使用共享“打印机”的“MacBook Pro”上安装的Printopia

我做了这个测试:

-(IBAction)print:(id)sender
{
 UIPrintInteractionController *controller = [UIPrintInteractionController sharedPrintController];

 UIPrintInteractionCompletionHandler completionHandler = ^(UIPrintInteractionController *printController, BOOL completed, NSError *error) {
      NSLog(@"Selected Printer ID: %@",printController.printInfo.printerID);
  };

 NSString* path = [[NSBundle mainBundle] pathForResource:@"TestImage" ofType:@"png"];
 NSURL* imageURL = [NSURL fileURLWithPath:path isDirectory:NO];

 UIPrintInfo *printInfo = [UIPrintInfo printInfo];
 printInfo.outputType = UIPrintInfoOutputPhoto;
 printInfo.jobName = @"Image print";
 controller.printInfo = printInfo;

 controller.printingItem = imageURL;

 if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
 {
    [controller presentFromBarButtonItem:self.printButton animated:YES completionHandler:completionHandler];  // iPad
 }
 else
 {
     [controller presentAnimated:YES completionHandler:completionHandler];  // iPhone
 }
}

打印完成后,应用程序将记录以下打印机ID:
\032Printer\032@\032MacBook\032Pro._ipp._tcp.local.

我想覆盖打印机,所以我应该这样做:
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.printerId = @"\032Printer\032@\032MacBook\032Pro._ipp._tcp.local.";
controller.printInfo = printInfo;

但是由于某种原因,它不起作用,UIPrintInteractionController没有按预期选择打印机,但是打印机显示在打印机列表中。

我想问题是打印机ID中存在奇怪的字符。

任何人都知道printInfo.printerId的编码方式以及如何手动设置它吗?

如果我将NSString * printerId存储到一个ivar中,并在下一次打印操作中再次对其进行设置,则它可以工作,但是我无法手动通过打印机ID强制使用默认打印机。

btw:显然,如果打印机不可用/不可达,我知道无法选择...

最佳答案

为了以编程方式设置默认打印机,只需要将printInfo的printerID设置为._ipp._tcp.local。 printerName应该与UIPrinterInteractionController弹出窗口中的打印机列表中的显示方式完全相同。例如,对于正在显示为LANIERCOLOR315 [00:80:A3:95:2D:41]的打印机,printerID为LANIERCOLOR315 [00:80:A3:95:2D:41]._ipp._tcp.local。您不必编码特殊字符。该框架将做到这一点。

10-05 23:36