Swift: попытка напечатать «Двусторонний» UIPrintInfo.Duplex.longEdge, но не работает
Я пытаюсь распечатать PDF с двух сторон в приложении iOS, для этого параметра printInfo.duplex = UIPrintInfo.Duplex.longEdge, но он игнорируется при печати с помощью UIPrintInteractionController
printInfo.printerID = "c890E8700000.local"
printInfo.jobName = lastPathComponent
printInfo.duplex = UIPrintInfo.Duplex.longEdge
printInfo.orientation = UIPrintInfo.Orientation.portrait
printInfo.outputType = UIPrintInfo.OutputType.general
print(printInfo.dictionaryRepresentation)
// this is what I see in debug print
Optional([
AnyHashable("UIPrintInfoPrinterIDKey"): c890E8700000.local,
AnyHashable("UIPrintInfoJobNameKey"): 02180830225_bg.pdf
])