從我的應用程序中,我如何允許用戶從iPhone或iPad打印文檔或頁面?哪些版本的iOS支持打印?是否可以從iPhone和iPad應用程序進行打印?
7
A
回答
6
您可以在任何運行iOS 4.2或更高版本的多任務處理器上打印。請參閱此處瞭解更多信息:http://developer.apple.com/library/ios/documentation/2DDrawing/Conceptual/DrawingPrintingiOS/Printing/Printing.html#//apple_ref/doc/uid/TP40010156-CH12-SW1
17
這是一個簡單代碼。
-(void)printItem {
UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, YES, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
[self.view.layer renderInContext:context];
UIImage *imageFromCurrentView = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIPrintInteractionController *printController = [UIPrintInteractionController sharedPrintController];
printController.printingItem = imageFromCurrentView;
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.outputType = UIPrintInfoOutputGrayscale;
printController.printInfo = printInfo;
printController.showsPageRange = YES;
void (^completionHandler)(UIPrintInteractionController *, BOOL, NSError *) = ^(UIPrintInteractionController *printController, BOOL completed, NSError *error) {
if (!completed && error) {
NSLog(@"FAILED! due to error in domain %@ with error code %u", error.domain, error.code);
}
};
[printController presentAnimated:YES completionHandler:completionHandler];
}
相關問題
- 1. 是否可以從另一款iPhone/iPad獨立應用程序啓動iPhone/iPad獨立應用程序?
- 2. 是否有可能使用ipad開發iphone,ipad應用程序
- 3. 是否可以從Adobe Air Android應用程序打印到無線打印機?
- 4. 是否可以在應用程序中關閉設備(iPhone/iPad)?
- 5. 是否可以創建兼容iPad的iPhone應用程序?
- 6. 打印從iPad應用程序
- 7. 是否可以使用非ANSI顏色從Python進行打印?
- 8. 是否可以修改iPhone應用程序使其在iPad上全屏運行?
- 9. 如何從iPhone應用程序打印?
- 10. 從iphone應用程序打印
- 11. 從C#ASP.NET應用程序進行遠程和本地打印
- 12. 是否有可能在iphone,ipod,ipad和mac中運行iphonic應用程序?
- 13. 在進程退出之前是否可以從perl CGI進行打印?
- 14. 是否可以從外部進程注入和執行應用程序?
- 15. 是否可以從Azure工作人員進行打印?
- 16. 從可可應用程序打印NSImage
- 17. 是否可以在本地iPhone應用程序和PhoneGap應用程序之間進行互動?
- 18. 檢查Phonegap應用程序是否在iPad或iPhone上運行
- 19. 是否可以在虛擬機上運行IPhone應用程序
- 20. 是否可以從iPhone應用程序訂閱日曆?
- 21. 是否可以從美國境外發布iphone應用程序?
- 22. 是否可以從我的iPhone恢復iOS應用程序?
- 23. 是否可以將數據從CSV導入iphone應用程序?
- 24. 是否可以將Eye-Fi集成到iPad/iPhone應用程序中?
- 25. iPad Pro應用程序圖標是否可以從iPad Air縮放應用程序圖標
- 26. 是否可以使用Phonegap開發全屏iPad應用程序?
- 27. 是否可以從本機應用程序打開addContactScreen?
- 28. 是否可以從後臺應用程序打開Android屏幕?
- 29. Intermec PR3打印機使用intermec SDK從android應用程序進行打印?
- 30. ClickOnce應用程序是否可以與網頁進行交互