In the print preview screen, if no printer is connected, click on the print button, a popover is displayed in iOS 15 containing the Copy and Save to files option.
I want to remove this popover, As this file is confidential, and don't want to save this to the device.
Please help.

One option is to use a UIPrinterPickerController allowing the user to select the printer (instead of the entire UIPrinterInteractionController interface) and then using the printToPrinter:completionHandler: method to print directly to the printer. If you need to allow the user to print multiple copies or control any of the other print options, consider presenting your own custom UI to allow the user to select that.
Here's a quick example: