- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在所有 4 面固定一个按钮,以将按钮对象固定在我任意放置的确切位置,但是当我运行它时出现以下错误。任何见解或帮助将不胜感激。
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. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<_UILayoutSupportConstraint:0x9f494b0 V:[_UILayoutGuide:0x9f40370(20)]>",
"<_UILayoutSupportConstraint:0x9f3b6c0 V:|-(0)-[_UILayoutGuide:0x9f40370] (Names: '|':UIView:0x9f3feb0 )>",
"<_UILayoutSupportConstraint:0x9f418e0 V:[_UILayoutGuide:0x9f407c0(0)]>",
"<_UILayoutSupportConstraint:0x9f18010 _UILayoutGuide:0x9f407c0.bottom == UIView:0x9f3feb0.bottom>",
"<NSLayoutConstraint:0x9f40f10 V:[UIButton:0x9f40f40'Button']-(211)-[_UILayoutGuide:0x9f407c0]>",
"<NSLayoutConstraint:0x9f47ab0 V:[_UILayoutGuide:0x9f40370]-(539)-[UIButton:0x9f40f40'Button']>",
"<NSLayoutConstraint:0xa157b10 'UIView-Encapsulated-Layout-Height' V:[UIView:0x9f3feb0(568)]>"
)
Will attempt to recover by breaking constraint
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
最佳答案
即使@AdrianB 对我在他的回答中的评论也有基本的了解,我将在这里详细解释:
假设 View 的大小为 200 x 200,按钮为 100 x 20。(值仅用于举例)。所以我。例如,您将其放置在左侧空间 80、右侧空间 20 (80+100+20=200) 和顶部空间 100、底部空间 80。 (100+20+80=200)。
现在 View 的大小发生了变化。它的宽度为 300。您对左右的约束仍然有效。所以边框仍然是 80 和 20。实现这一点的唯一方法是给按钮设置 200 的宽度。(80+200+20=300)。好的,也许是一个看起来很有趣的按钮,但这有效。
但是,如果 View 的高度变为 300,则在垂直方向上确实变得很难。按钮必须在垂直方向上增长到 120。这是顶部和底部空间保持有效的唯一方法。我不认为按钮是那样的。
但是,当 View 的高度小于 180 时,这是不可能的,因为所有空间都被您的约束(顶部 = 100 + 底部 = 80 = 180)占用,因此底部不再有空间。它的高度变为负数。
那就是问题所在。
现在到解决方案:
不要在自动布局中放置对所有四个边缘都具有硬约束的按钮。自动布局用于更改 super View 大小。在这种情况下,你所做的一切都是没有意义的。
关于ios - 为什么我会收到一条错误消息,指出自动布局为 'Unable to simultaneously satisfy constraints.'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31883513/
我正在尝试运行查询,但每当运行时都会收到一条错误消息,指出“列地址不能为空”。 这是我的代码。 package com.rajesh.action; import java.sql.*; public
当我运行此代码时: $addUniverseColumn = $db->prepare("ALTER TABLE spaceships ADD :universe int"); $addUnivers
我正在尝试从统一 ( https://unity3d.com/learn/tutorials/topics/analytics/integrating-unity-iap-your-game?play
我知道这个集合应该在 Date 对象上执行,但即使我在 Date 对象上执行。 reactdatepicker 根本不起作用。 第 12:3 行:“setHours”未定义 no-undef 第 12
我正在编写解析云代码,用于 ping eBay,返回带有项目结果的 JSON 数据,然后解析该数据并将前两个类别存储到数组中。发送到 eBay 的查询基于用户在我的 iOS 应用程序的 itemSea
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Why can templates only be implemented in the header fi
下面是我的代码片段 //Search Bar Delegate func searchBar(searchBar: UISearchBar, textDidChange searchText: Str
在Android Studio中, 我在构建我的应用程序时遇到错误。 Error:Failed to find Build Tools revision 26.1.0 Install Build To
我应该添加一个方法并且不在 main 中调用 throws 吗?这样合适吗?我该怎么写呢?我不知道怎么写。 private static String fileName = "C:\\fruit.c
我试过这样做: select film.title,category.name,category.category_id from film inner join film_actor on film
我与 Parse 合作已经有一段时间了,并取得了巨大的成功。最近,我遇到了一个问题,促使我转向最新的基于 CDN 的 javascript API。在更改我的解析 API 版本(通过 cdn)后,我立
intro = new Audio.newMusic(Gdx.files.internal("core/assets/OpenSong.mp3")); 在javadocs中,这是它所说的这样做 htt
我的程序存在问题,该程序交叉引用文件并在按字母顺序排列的编号列表中显示某些信息。我不断收到 2 个错误,指出 newMyTree 以及 findOrInsert 的“ undefined refere
这个问题在这里已经有了答案: JavaScript setInterval and `this` solution (9 个回答) 关闭 3 年前。 我想做的是动画圆圈从 Canvas 边界弹起。我
我的理解是,进入 Mysql 字符串列 varchar(255) 的字符串理想情况下应该进入 varchar(255) 的 Redshift 列。 (utf8 字符集) 我被困在一个失败的用例中。 我
尝试在 Eclipse 中启动 Google App Engine 项目时,我不断收到错误消息,说 localhost 的 Server App Engine Standard 无法启动(错误日志如下
我正在尝试使用 NLTK 的朴素贝叶斯分类器训练数据集,但我的终端不断抛出此错误 # Applying Naive Bayes training_set = featursets[:2000] tes
我是大型机自动化的新手,正在尝试使用 Jagacy jar 和 java 来自动化应用程序。在一个特定的屏幕上,我必须输入一个从 0 到 9 的数字,从此我使用 jagacy 提供的 writePos
我需要一些关于该错误的帮助,不知道如何解决它。我是编程新手,我正在使用 Sublime Text 编辑器和 Cygwin64。这在我老师给我们的讲座中起作用了,现在我想知道我的编译器设置是否正确?
您好,我一直在尝试学习如何将 Stripe 预构建结帐页面集成到我的 django 项目中。 stripe 文档是针对 Flask 的,所以我正在尝试阅读或观看 YouTube 教程,了解如何将它们转
我是一名优秀的程序员,十分优秀!