使用自动布局水平居中子视图

时间:2013-04-19 17:45:58

标签: iphone objective-c alignment autolayout

我有两个子视图,UILabelUIImageView,我想在视图中居中。它们应该彼此相邻放置,并且它们应该位于超视图的中心,其宽度是已知的。

我还希望能够在视图之间添加一些间距。

这可以通过自动布局实现吗?

-------------------------------
|           Superview         |
|                             |
|     [label] [imageview]     |
-------------------------------

1 个答案:

答案 0 :(得分:-2)

包装标签&包装视图中的imageview

然后使用

自动调整包装视图
view.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;

enter image description here