1

私のアプリでは、ユーザーがボタンをタップして、写真アプリ (カメラ ロール) から最後の 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)
    }

}
4

0 に答える 0