0
keyWindow에 대한 사용자 정의보기를 추가했습니다. 커스텀 뷰에 UIAlertController를 어떻게 표시 할 수 있습니까? (현재 경고 그냥 내 사용자 지정보기에서 팝업.) 내가 더 잘 생각KeyWindow의 하위보기에서 UIAlertView가 표시됩니다.
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)
나는 그것을 시도했다. 완벽하게 작동! 많이 sooooo 감사합니다 :) – Jenny