UIAlertController 的 actionSheet 报约束错误
19-08-27 15:19
字数 1404
阅读 3718
已编辑
模拟器版本:12.4
Xcode 版本:10.3
我使用 UIAlertController 创建了一个 actionSheet,在弹出的时候,会报一个约束错误
我的代码如下
let alertController = UIAlertController(title: nil, message: "选择操作", preferredStyle: .actionSheet)
let shareAction = UIAlertAction(title: "分享到微信", style: .default) { _ in
print("点击分享到微信")
}
let webviewAction = UIAlertAction(title: "浏览器打开", style: .default) { _ in
print("点击浏览器打开")
}
let copyLinkAction = UIAlertAction(title: "复制链接", style: .default) { _ in
print("点击复制链接")
}
let cancelAction = UIAlertAction(title: "取消", style: .cancel) { _ in
print("点击了取消")
}
alertController.addAction(shareAction)
alertController.addAction(webviewAction)
alertController.addAction(copyLinkAction)
alertController.addAction(cancelAction)
present(alertController, animated: true, completion: nil)
报错信息如下
2019-08-27 15:01:05.571083+0800 SHIQIDU[22849:4109766] [LayoutConstraints] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want.
Try this:
(1) look at each constraint and try to figure out which you don't expect;
(2) find the code that added the unwanted constraint or constraints and fix it.
(
"<NSLayoutConstraint:0x600000d6d2c0 UIView:0x7faa9ce60380.width == - 16 (active)>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x600000d6d2c0 UIView:0x7faa9ce60380.width == - 16 (active)>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
不知道为什么出现这种情况,后来网上查询原来是个 bug,从 iOS 12.1 开始就有这个毛病,到现在还没修复。
1人点赞>
0 条评论
排序方式
时间
投票
快来抢占一楼吧
请登录后发表评论
相关推荐
文章归档
2024-11
1 篇
2024-06
1 篇
2024-05
2 篇
2024-04
2 篇
2024-03
2 篇
展开剩余 68 条
2024-01
1 篇
2023-10
1 篇
2023-09
1 篇
2023-08
1 篇
2023-06
1 篇
2023-04
1 篇
2022-12
2 篇
2022-06
1 篇
2022-04
4 篇
2022-03
3 篇
2022-01
6 篇
2021-12
2 篇
2021-11
2 篇
2021-10
2 篇
2021-09
1 篇
2021-08
2 篇
2021-07
4 篇
2021-06
1 篇
2021-05
3 篇
2021-04
3 篇
2021-01
2 篇
2020-11
1 篇
2020-10
3 篇
2020-09
2 篇
2020-08
1 篇
2020-07
5 篇
2020-06
5 篇
2020-05
1 篇
2020-04
1 篇
2020-03
2 篇
2020-02
3 篇
2020-01
1 篇
2019-11
5 篇
2019-10
10 篇
2019-09
12 篇
2019-08
17 篇
2019-07
8 篇
2019-05
3 篇
2019-04
8 篇
2019-03
7 篇
2019-02
8 篇
2019-01
5 篇
2018-12
7 篇
2018-11
8 篇
2018-10
4 篇
2018-09
7 篇
2018-08
12 篇
2018-07
9 篇
2018-06
6 篇
2018-05
11 篇
2018-04
18 篇
2018-03
1 篇
2018-02
2 篇
2018-01
10 篇
2017-12
14 篇
2017-11
44 篇
2017-10
13 篇
2017-09
4 篇
2017-08
12 篇
2017-07
5 篇
2017-06
4 篇
2017-05
2 篇
2017-04
3 篇
2017-03
9 篇
2017-02
3 篇
2017-01
2 篇
2016-12
10 篇
2016-11
4 篇
最新文章
最受欢迎
11-07 19:00
06-26 11:51
05-17 17:08
05-17 10:59
04-11 17:05
13 评论
11 评论
10 评论