美文网首页
项目出现过的一些错误

项目出现过的一些错误

作者: Amok校长 | 来源:发表于2017-04-26 14:25 被阅读0次

    1. 报错一:

    Your application has presented a UIAlertController of style UIAlertControllerStyleActionSheet. The modalPresentationStyle of a UIAlertController with this style is UIModalPresentationPopover. You must provide location information for this popover through the alert controller’s popoverPresentationController. You must provide either a sourceView and sourceRect or a barButtonItem. If this information is not known when you present the alert controller, you may provide it in the UIPopoverPresentationControllerDelegate method -prepareForPopoverPresentation.

    当在iPad上运行上面这段代码的时候,如果没有设置如下两个属性 alertController.popoverPresentationController.sourceView

    alertController.popoverPresentationController.sourceRect

    会导致程序crash。然而在iPhone上没有这样的问题。

    相关文章

      网友评论

          本文标题:项目出现过的一些错误

          本文链接:https://www.haomeiwen.com/subject/lzmizttx.html