UIPrintInteractionController распечатать последние 3 изображения из приложения фотографий

В моем приложении я бы хотел, чтобы пользователь нажал кнопку, чтобы напечатать последние три изображения из приложения для фотографий (камера). Я в настоящее время использую UIPrintInteractionController распечатать три UIImages из приложения, используя printingitems, Как мне сделать это для последних трех элементов из фотографий? Спасибо.

@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)
    }

}

0 ответов

Другие вопросы по тегам