在 iPad 上测试时 App 因弹窗而崩溃

Posted

技术标签:

【中文标题】在 iPad 上测试时 App 因弹窗而崩溃【英文标题】:App crashes when testing on iPad because of pop-over 【发布时间】:2016-01-20 15:22:45 【问题描述】:

我已经阅读并在这里搜索了答案,有人说在 ios 9 中你不需要额外的代码来在 iPad 上弹出窗口,我也尝试了其他两个相关问题中的代码,但它无法正常工作,弹出窗口仅显示删除而不是取消。它在 iPhone 和 iPhone plus 上运行良好。这是我的代码:

override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) 
    if editingStyle == .Delete 
        let item = itemStore.allItems[indexPath.row]

        let title = "Delete \(item.name)?"
        let message = "Are you sure you want to delete this item"

        let ac = UIAlertController(title: title, message: message, preferredStyle: .ActionSheet)

        let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel, handler: nil)
        ac.addAction(cancelAction)

        let deleteAction = UIAlertAction(title: "Delete", style: .Destructive, handler:  (action) -> Void in

        self.itemStore.removeItem(item)

        self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Automatic)

    )
        ac.addAction(deleteAction)

        presentViewController(ac, animated: true, completion: nil)

   

【问题讨论】:

如果崩溃,日志中应该有错误/崩溃消息。它说什么? it doesn't work correctly 它只是不起作用还是崩溃了?如果它崩溃,显示错误消息。 请参阅操作方法:***.com/help/how-to-ask @Eric D. 抱歉,它使应用程序崩溃并返回线程 1:信号 SIGABRT。 【参考方案1】:

这是由 iOS 8 中的更改引起的。您必须为 iPad 使用 UIModalPresentationPopover。

这里有另一个堆栈溢出问题的详细描述:Presenting a UIAlertController properly on an iPad using iOS 8

【讨论】:

以上是关于在 iPad 上测试时 App 因弹窗而崩溃的主要内容,如果未能解决你的问题,请参考以下文章

VS CODE使用:如何彻底关闭输入补全(不弹窗而不仅仅回车后输出)

应用程序因弹出窗口而终止

Ipad Mini 2 上奇怪的 UIAccessibility 崩溃

Xcode 6 Beta 在 iPad 7.1 上运行时使用核心数据使应用程序崩溃

iPad App 仅在 4.2 分发版本中崩溃

iPad(仅限 3G 机型)Safari 崩溃