iOS 如何通过 PureLayout 使两个视图居中

Posted

技术标签:

【中文标题】iOS 如何通过 PureLayout 使两个视图居中【英文标题】:iOS how to center two view via PureLayout 【发布时间】:2015-05-27 12:04:44 【问题描述】:

我想将我的 UIImageView 和 UILabel 居中,如下图所示。 我使用了一个容器来包含UIImageView和UILabel,但是容器不适合UIImageView和UILabel的宽度,所以我需要设置容器的宽度。有什么方法可以解决问题而不设置宽度或计算视图的宽度?图片如下:

【问题讨论】:

【参考方案1】:

有四种视图在起作用:

    外部或主视图 容器视图(包含图像和标签) 图像视图 标签视图

视图位于以下层次结构中:

    外观
      容器视图
        图像视图 标签视图

我假设外部视图的宽度和高度来自其他约束。

我从您提供的图像中看到的图像比标签高,请记住,遵循约束可以实现您想要的:

    将容器视图的 X 轴与外部视图对齐 将容器视图的 Y 轴与外部视图对齐 将图像视图的顶部、左侧和底部边缘固定到容器视图 将标签的右边缘固定到容器视图 将标签的 Y 轴与容器视图对齐。 设置图像和标签视图之间的水平距离。

【讨论】:

这样的评论值得在***上回答。坚持下去。 它有效!在我的情况下,我对外部视图尊重其父级设置了宽度约束,我这样做是因为标签文本是动态的并且它可能会溢出 Align Y axis of label to container view,不应该是X axis吗?【参考方案2】:
[self.button autoPinEdgeToSuperviewEdge:ALEdgeLeft withInset:15];
[self.button autoPinEdgeToSuperviewEdge:ALEdgeRight withInset:15];
[self.button autoSetDimension:ALDimensionHeight toSize:46];
[self.button autoAlignAxis:ALAxisVertical toSameAxisOfView:self.contentView];

[self.containerView autoAlignAxisToSuperviewAxis:ALAxisHorizontal];
[self.containerView autoAlignAxisToSuperviewAxis:ALAxisVertical];

[self.iconImageView autoPinEdge:ALEdgeLeft toEdge:ALEdgeLeft ofView:self.containerView];
[self.iconImageView autoAlignAxisToSuperviewAxis:ALAxisHorizontal];

[self.label autoPinEdge:ALEdgeRight toEdge:ALEdgeRight ofView:self.containerView];
[self.label autoAlignAxisToSuperviewAxis:ALAxisHorizontal];

[self.label autoPinEdge:ALEdgeLeft toEdge:ALEdgeRight ofView:self.iconImageView withOffset:10];

感谢@abdullah。他清除了我的思绪。我忘了“将标签的右边缘固定到容器视图”,所以 containerViewwidth 变成了 0。

【讨论】:

【参考方案3】:

这是快速版本:

button.autoPinEdge(toSuperviewEdge: .left, withInset: 15)
button.autoPinEdge(toSuperviewEdge: .right, withInset: 15)
button.autoSetDimension(.height, toSize: 46)
button.autoAlignAxis(.vertical, toSameAxisOf:  contentView)

containerView.autoAlignAxis(toSuperviewAxis: .horizontal)
containerView.autoAlignAxis(toSuperviewAxis: .vertical)

iconImageView.autoPinEdge(.left, to: .left, of: containerView)
iconImageView.autoAlignAxis(toSuperviewAxis: .horizontal)

label.autoPinEdge(.right, to: .right, of: containerView)
label.autoAlignAxis(toSuperviewAxis: .horizontal)
label.autoPinEdge(.left, to: .right, of: iconImageView, withOffset: 10.0)

【讨论】:

以上是关于iOS 如何通过 PureLayout 使两个视图居中的主要内容,如果未能解决你的问题,请参考以下文章

Purelayout™ 可以通过 Interface Builder 使用吗?

PureLayout的使用

如何使以编程方式生成的子视图符合超级视图(iOS)的边界?

带有 PureLayout 的自定义 UIButton

如何使 iOS 子视图将自身添加到视图中

仅当在 iOS 7 弹出框内使用视图时,如何使视图背景透明?