I would like to show a list with all printer accessible by the device via AirPrint.
I get it working with using the UIPrinterPickerController
.
Is there anyway displaying this PickerController in a custom way, let's say feeding the data into a UITableView
?
Also note that I'm planning to use this App on an iPad which only supports the UIPrinterPickerController.presentFromRect(CGRect)
Here's how it looks right now. Instead of this popup there should be a UITableView
printerPickerController:shouldShowPrinter:
you can retrieve all theUIPrinter
, since it should get called for each printers. You may have to call the show theUIPrinterPickerController
(and hide it, or in a invisible part of the screen, quick dismiss, I don't know when the delegate method should be call, i.e.. if cell willShow, or already set) in order that the previous method ofUIPrinterPickerControllerDelegate
gets called. – Dov