Auto layout equal space between UIButtons(UIButtons之间的自动布局相等空间)
问题描述
我是自动布局的新手,所以在这里阅读堆栈中的一些问题我试图将单元格底部的 5 个 UIButton 对齐以具有相等的空间(例如 7 个点),我尝试使用代码和它不起作用.
I'm new in auto layout so reading a bit questions here in stack I'm trying to align my 5 UIButtons at the bottom of the cell to have equal space (of 7 points for example), I tried using code and it doesn't work.
我的问题是 - 我如何使用 Interface Builder 来做到这一点?
My question is - how can I do it using Interface Builder?
UIButton *button1 = self.btnFavorite, *button2 = self.btnCalendar, *button3 = self.btnEmail,
*button4 = self.btnMessage, *button5 = self.btnCall;
NSMutableArray *constraintsForButtons = [[NSMutableArray alloc] init];
float unusedHorizontalSpace = self.bounds.size.width - button1.intrinsicContentSize.width - button2.intrinsicContentSize.width - button3.intrinsicContentSize.width - button4.intrinsicContentSize.width - button5.intrinsicContentSize.width;
NSNumber *spaceBetweenEachButton = [NSNumber numberWithFloat: unusedHorizontalSpace / 5 ] ;
[constraintsForButtons addObjectsFromArray:[NSLayoutConstraint
constraintsWithVisualFormat: @"H:|-(space)-[button1]-(space)-[button2]-(space)-[button3]-(space)-[button4]-(space)-[button5]-(space)-|"
options:NSLayoutFormatAlignAllCenterY
metrics:@{@"space":spaceBetweenEachButton}
views:NSDictionaryOfVariableBindings(button1,button2, button3,button4, button5)]];
[constraintsForButtons addObjectsFromArray:[NSLayoutConstraint constraintsWithVisualFormat: @"V:|[button1]"
options: 0
metrics: nil
views: NSDictionaryOfVariableBindings(button1) ] ] ;
[self addConstraints:constraintsForButtons] ;
错误:
2014-10-09 03:04:07.501 Human Response[2972:781746] 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)
(
"<NSLayoutConstraint:0x1568f260 H:[UIButton:0x1568f100(20)]>",
"<NSLayoutConstraint:0x15690b90 H:[UIButton:0x15690fc0(20)]>",
"<NSLayoutConstraint:0x156921c0 H:[UIButton:0x15692d00(20)]>",
"<NSLayoutConstraint:0x1568d4f0 H:[UIButton:0x1568d8e0(20)]>",
"<NSLayoutConstraint:0x1558b4c0 H:[UIButton:0x15598410(20)]>",
"<NSLayoutConstraint:0x155993d0 H:|-(-60)-[UIButton:0x15598410] (Names: '|':UITableViewCellContentView:0x15673e40 )>",
"<NSLayoutConstraint:0x15599550 H:[UIButton:0x15598410]-(-60)-[UIButton:0x1568d8e0]>",
"<NSLayoutConstraint:0x155996e0 H:[UIButton:0x1568d8e0]-(-60)-[UIButton:0x15692d00]>",
"<NSLayoutConstraint:0x15599740 H:[UIButton:0x15692d00]-(-60)-[UIButton:0x15690fc0]>",
"<NSLayoutConstraint:0x155997a0 H:[UIButton:0x15690fc0]-(-60)-[UIButton:0x1568f100]>",
"<NSLayoutConstraint:0x15599800 H:[UIButton:0x1568f100]-(-60)-| (Names: '|':UITableViewCellContentView:0x15673e40 )>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x1558b4c0 H:[UIButton:0x15598410(20)]>
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.
2014-10-09 03:04:07.633 Human Response[2972:781746] 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)
(
"<NSLayoutConstraint:0x155a2de0 H:[UIButton:0x155a2fc0(20)]>",
"<NSLayoutConstraint:0x155a33d0 H:[UIButton:0x155a32d0(20)]>",
"<NSLayoutConstraint:0x155a3750 H:[UIButton:0x155a3620(20)]>",
"<NSLayoutConstraint:0x155a1bc0 H:[UIButton:0x155a1a60(20)]>",
"<NSLayoutConstraint:0x155a3df0 H:[UIButton:0x155a3cc0(20)]>",
"<NSLayoutConstraint:0x156a4770 H:|-(-60)-[UIButton:0x155a3cc0] (Names: '|':UITableViewCellContentView:0x155a2150 )>",
"<NSLayoutConstraint:0x156a47b0 H:[UIButton:0x155a3cc0]-(-60)-[UIButton:0x155a1a60]>",
"<NSLayoutConstraint:0x156a4840 H:[UIButton:0x155a1a60]-(-60)-[UIButton:0x155a3620]>",
"<NSLayoutConstraint:0x156a48c0 H:[UIButton:0x155a3620]-(-60)-[UIButton:0x155a32d0]>",
"<NSLayoutConstraint:0x156a4920 H:[UIButton:0x155a32d0]-(-60)-[UIButton:0x155a2fc0]>",
"<NSLayoutConstraint:0x1569fa50 H:[UIButton:0x155a2fc0]-(-60)-| (Names: '|':UITableViewCellContentView:0x155a2150 )>"
)
推荐答案
我发现用 IB 做到这一点的唯一方法是在要均匀分布的视图之间创建间隔视图,并连接它们的所有边到要均匀分布的视图的相邻边缘.你给他们可变的宽度/高度,然后添加约束,说所有的间隔视图必须具有相同的宽度/高度.
The only way I've found to do this with IB is to create spacer views between the views that you want to distribute evenly, with all of their edges connected to the neighboring edges of the views that you want to distribute evenly. You give them variable width/height, and then add constraints that say that all of the spacer views must have the same width/height.
设置起来非常繁琐,但确实有效.
It's very tedious to set up, but it does work.
这篇关于UIButtons之间的自动布局相等空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIButtons之间的自动布局相等空间
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01