UIAlertController(ActionSheet) - 无法同时满足约束[重复]

问题描述 投票:2回答:1

这个问题在这里已有答案:

每次在模拟电话中显示UIAlertController操作表时,我都会收到此警告。代码没什么特别的。

let action1 = UIAlertAction(title: "Action 1", style: .default) { _ in }
let action2 = UIAlertAction(title: "Action 2", style: .default) { _ in }
let cancel = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
let alert = UIAlertController(title: "title", message: "message", preferredStyle: .actionSheet)

alert.addAction(action1)
alert.addAction(action2)
alert.addAction(cancel)

self.present(alert, animated: true)

我正在运行Xcode 10.2(10E125),Swift 5.约束似乎超出了我的控制范围,但请告知我是否做错了什么。

swift constraints
1个回答
-3
投票

IB的屏幕截图显示了约束操纵菜单的图标。您还可以单击约束本身来编辑或删除它们。

Picture from IB

查看各种下拉菜单。

© www.soinside.com 2019 - 2024. All rights reserved.