Here is my situation: I have many bitmap images (high resolution). I want to print these images using Airprint. I have found a way to print images.
NSArray array = {image1, image2, image3, image4..... image100}
UIPrintInteractionController *pic;
pic.printingItems = array;
So, I know it is possible.
BUT!! This approach uses a lot of memory. Since I want to print many images and the size of the array grows larger, I can't use this approach. So, I want to know how to print many images in Airprint.
Is there callback function like this?
Airprint says : "give me a next printing image" and then i can give an image.