Good afternoon everyone, I have a problem with showing Alerts in iOS 13, my code is:On AppDelegate:func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. debugPrint(didFinishLaunchingWithOptions) let alert = UIAlertController(title: My APP, message:didFinishLaunchingWithOptions, preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: OK, style: .cancel, handler: { (action: UIAlertAction!) in debugPrint(OK) })) self.showAlertGlobally(alert) return true }On Custom View Controller:override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. let alert = UIAlertController(title: My App, message:viewDidLoad, preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: OK, style: .cancel, handler: { (action: UIAlertAction!) in debugPrint(OK) })) self.showAlertGlobally(alert) }A