我在标题中使用带有Map的UICollectionView。
我想处理核心位置错误。我有3种错误类型,其中两种我想提出一个No WS-Security header found
。
但我收到错误,因为UIAlertView
没有名为UICollectionViewCell
的成员。
presentViewController
如何将此func locationUnknown() {
var alert = UIAlertController(title: "Location Unknown", message: "Please try again later.", preferredStyle: UIAlertControllerStyle.Alert)
let alertAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action: UIAlertAction!) -> Void in
})
alert.addAction(alertAction)
self.presentViewController(alert, animated:true, completion: nil)
}
发送到UIAlertView
的屏幕?
答案 0 :(得分:12)
使用窗口的根视图控制器显示警报:
self.window?.rootViewController?.present(alert, animated: true, completion: nil)