iOS AlertView выше YTPlayerView
У меня есть YTPlayerView на моем viewController. Если я создаю UIAlertController и показываю его методом self.present(alertView, animated: true, completion: nil)
, предупреждение будет отображаться под видом игрока. Как я могу показать alertView над всеми представлениями на моем viewController?
Вот код, который я использую сейчас:
let title = "test alert message" let alert = UIAlertController(title: title, message: nil, preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
UIApplication.shared.keyWindow?.rootViewController?.present(alert, animated: true, completion: nil)