How to Reposition Alert Controller - Swift

I'm not sure if I'm asking this in the correct forum section or not. If I got the wrong area, then please forgive me. I also asked this question on the apple developer website, but they tend to either not reply or take a very long time to reply. The few times I've asked a question on this website, the users have always been very friendly and helpful. So thank you ahead of time!

I have an alert controller that I present to a user when a button is clicked. It pops up with several options for the user to select from. The controller naturally presents in the middle of the screen; however, I want to move it to the right side of the screen so that the user can access it via one hand when in landscape mode. How can I reposition the alert??

Example: Imagine the user is holding the phone sideways in their right hand, they click a button, and before the camera pulls up, an alert is presented asking them something. I want them to be able to interact with the alert without having to use their other hand. To do this, the alert needs to appear on the right side of the screen instead of in the center.

Example code:

let alert = UIAlertController(title: "Type", message: "Please select a type.", preferredStyle: .alert)

        alert.addAction(UIAlertAction(title: "Burger", style: .default, handler: {(action:UIAlertAction!) in
            self.eatBurger()
        }))

        alert.addAction(UIAlertAction(title: "Pizza", style: UIAlertAction.Style.default, handler: {(action:UIAlertAction!) in
           self.eatPizza()
        }))

        present(alert, animated: true, completion: nil)

UIKit questions should mostly go on the Apple forum or SO.

Anyway, you can't control the position of UIAlertController.