Я добавил пользовательский вид на keyWindow. Как я могу показать UIAlertController в пользовательском представлении? (Прямо сейчас предупреждение просто выскочить под моей настраиваемое представление.)Отображение UIAlertView под подзаголовком KeyWindow
let customView = CustomView()
UIApplication.sharedApplication().keyWindow!.addSubview(customView)
let alert = UIAlertController(title: NSLocalizedString("Error", comment: ""), message: "", preferredStyle: .Alert)
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
presentViewController(alert, animated: true, completion: nil)
Я пробовал. Работайте отлично! Спасибо вам большое! – Jenny