如何从UICollectionViewCell呈现AlertView

时间:2015-09-04 05:31:30

标签: ios uialertview uicollectionviewcell

我在标题中使用带有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的屏幕?

1 个答案:

答案 0 :(得分:12)

使用窗口的根视图控制器显示警报:

self.window?.rootViewController?.present(alert, animated: true, completion: nil)