When using UIPrintInteractionController,
it is easy to turn off the 'page range' and 'number of copies' options
UIPrintInteractionController *pic =
[UIPrintInteractionController sharedPrintController];
pic.delegate = self;
pic.printInfo = pif;
pic.printFormatter = formatter;
pic.showsPageRange = NO;
pic.showsNumberOfCopies = NO;
Is there a way to TURN OFF the Double-sided option?
Conversely, has anyone actually confirmed with Apple, that it is impossible to turn off the double sided option? If so thanks.