使用 UIAlertAction Xcode 7.3 beta 的控制台出错

Error in console using UIAlertAction Xcode 7.3 beta

我正在尝试使用 alertview 将错误打印给用户。 这是我的代码:::

if error != nil{
 let DisplayAlert = UIAlertController(title: "Error!!", message: error?.description, preferredStyle: .Alert)
 DisplayAlert.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
}

当我 运行 代码时,我在控制台中看到以下内容,但我没有看到向用户显示任何警报。

"Attempting to load the view of a view controller while it is deallocating is not allowed and may result in undefined behavior"

我应该怎么做才能解决这个问题?请帮助。 谢谢!!!

您似乎忘记了提醒

if error != nil{
    let DisplayAlert = UIAlertController(title: "Error!!", message: error?.description, preferredStyle: .Alert)
     DisplayAlert.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
    self.presentViewController(DisplayAlert, animated: true, completion: nil)
}