1
A
回答
1
我認爲正常的打印API將使用AirPrint來完成此操作。 http://developer.apple.com/library/IOs/documentation/2DDrawing/Conceptual/DrawingPrintingiOS/Printing/Printing.html
此外,有一個名爲Printopia偉大的應用程序,讓你的Mac作爲一個AirPrint的主機:http://www.ecamm.com/mac/printopia/
+0
非常感謝,它的工作原理。 – 2012-01-18 13:10:10
0
UIPrintInteractionController * PIC = [UIPrintInteractionController sharedPrintController]
如果(PIC & & [UIPrintInteractionController canPrintData:self.myPDFData]){
pic.delegate = self;
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.outputType = UIPrintInfoOutputGeneral;
printInfo.jobName = @"PrintPdf";
printInfo.duplex = UIPrintInfoDuplexLongEdge;
pic.printInfo = printInfo;
pic.showsPageRange = YES;
pic.printingItem = self.myPDFData;
void (^completionHandler)(UIPrintInteractionController *, BOOL, NSError *) =
^(UIPrintInteractionController *pic, BOOL completed, NSError *error) {
if (!completed && error)
NSLog(@"FAILED! due to error in domain %@ with error code %ld",
error.domain, (long)error.code);
};
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
[pic presentFromRect:self.printButton.frame inView:self.view animated:YES completionHandler:^(UIPrintInteractionController *printInteractionController, BOOL completed, NSError *error) {
}];
} else {
[pic presentAnimated:YES completionHandler:completionHandler];
}
}
相關問題
- 1. 如何以編程方式將數據從iPhone/iPad發送到以太網打印機?
- 2. 如何以編程方式從android到wifi打印機發送文件並打印文件?
- 3. 從ipad打印到收據打印機(Epson TM-T88v)thr wifi
- 4. 以編程方式將數據從Android手機發送到PCD
- 5. 以編程方式打印到虛擬打印機(XPS)
- 6. 以編程方式打印到PDF打印機
- 7. 以編程方式將PDF打印到打印機C#
- 8. 從Android打印到WiFi打印機
- 9. 如何以編程方式從iPad打印PostScript?
- 10. 發送數據到Java打印機
- 11. 獲取數據發送到打印機
- 12. PHP發送數據到打印機
- 13. 發送數據到藍牙打印機
- 14. 如何從Android應用程序打印數據到WIFI打印機?
- 15. 以編程方式打印PDF文件 - 指定打印機
- 16. 以編程方式強制打印機打印副本
- 17. 從CN1打印到Wifi打印機應用程序
- 18. 將內容以RAW格式發送到打印機,從網頁
- 19. C#打印 - 數據何時發送到打印機?
- 20. 當我點擊打印時發送到打印機的數據
- 21. 如何以編程方式將openoffice writer odt文件從C#Windows Forms應用程序發送到打印機
- 22. Java打印機:將文檔發送到遠程打印機
- 23. 發送命令到遠程打印機
- 24. 以編程方式將XPS文件打印到物理打印機
- 25. 水晶報表查看器以編程方式打印到默認打印機
- 26. 將數據從特殊設備發送到打印機
- 27. ASP.NET:如何將文件從數據庫發送到打印機?
- 28. Android - 以編程方式連接到wifi
- 29. 創建「打印機」以PDF格式打印到SQL數據庫
- 30. 發送數據庫數據到打印機
取決於哪個打印機型號,你想工作。 – Raptor 2012-01-06 06:57:36