iPad アプリを使用して印刷を設定しようとしています。[印刷] をクリックすると、そのすべての内容を含むビューが印刷されます。これが私が試したことです(オンラインのいくつかの例からまとめました):
// This is the View I want to print
// Just a 200x200 blue square
var testView = UIView(frame: CGRectMake(0, 0, 200, 200))
testView.backgroundColor = UIColor.blueColor()
let printInfo = UIPrintInfo(dictionary:nil)!
printInfo.outputType = UIPrintInfoOutputType.General
printInfo.jobName = "My Print Job"
// Set up print controller
let printController = UIPrintInteractionController.sharedPrintController()
printController!.printInfo = printInfo
// This is where I was thinking the print job got the
// contents to print to the page??
printController?.printFormatter = testView.viewPrintFormatter()
// Do it
printController!.presentFromRect(self.frame, inView: self, animated: true, completionHandler: nil)
ただし、UIWebView、UITextView、および MKMapView でのみ使用できるこちらも読みましたが、正しいですか?viewPrintFormatter
これで(プリンターシミュレーターを使用して)印刷すると、空のページが表示されます。さまざまなプリンター/用紙サイズで試しました。
どんなガイダンスも大歓迎です!