Print Center on iPad: Issues Persist After Canceling and Resending Print Jobs.

Environment→ ・Device: iPad 9th generation ・OS:**iOS17.5.1 ・Printer model:EPSON PX-S730

Current issues→ 01). After canceling a print job in the Print Center, the Print Center screen on the iPad does not close. 02). When the printer is turned on and a new print job is sent, the Print Center shows the ongoing waiting job instead of proceeding with printing.

Problem Description→ The AirPrint feature on an iPad 9th generation running iOS 17.5.1 is being used with an EPSON PX-S730 printer. When sending a print job while the printer is off, the Print Center shows the ongoing printing job. If the print job is canceled in the Print Center, the Print Center screen on the iPad does not close. After turning on the printer and sending the print job again, the Print Center shows the ongoing waiting job.

What I want→ The Print Center screen on the iPad to close automatically after canceling a print job.

Test code:

Note: printController.print response is completed but Print Center status is waiting

let printInfo = UIPrintInfo(dictionary: nil)
printInfo.jobName = "Print Job"
printController.printInfo = printInfo
let pdfURL = Bundle.main.url(forResource: "sample", withExtension: "pdf")!
printController.printingItem = pdfURL
let printer = UIPrinter(url: printerUrl)
printController.print(to: printer, completionHandler: { [self] printController, completed, error in
  if(error != nil){
    print("error"). 
  }else if completed{
    print("completed")  //this scenario handles completion response
  }else{
    print("cancel")
  }
})
Print Center on iPad: Issues Persist After Canceling and Resending Print Jobs.
 
 
Q