私のアプリでは、ユーザーがボタンをタップして、写真アプリ (カメラ ロール) から最後の 3 つの画像を印刷するようにしたいと考えています。私は現在、を使用UIPrintInteractionController
してアプリ内から3つのUIImageを印刷するために使用していprintingitems
ます。写真の最後の 3 つのアイテムに対してこれを行うにはどうすればよいですか? ありがとうございました。
@IBAction func print(sender: AnyObject) {
var pic:UIPrintInteractionController = UIPrintInteractionController.sharedPrintController()!
pic.delegate = self
pic.showsPageRange = true
pic.printingItems = [imageOne,imageTwo,imageThree]
if UIDevice.currentDevice().userInterfaceIdiom == .Pad {
pic.presentFromRect(self.printButton.frame, inView:self.view, animated:true, completionHandler: nil)
} else {
pic.presentAnimated(true, completionHandler: nil)
}
}