Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以创建一个自动布局约束,其中视图的高度是其太阳视图高度的总和?
我有一个设计,其中视图包含垂直堆叠的子视图 1 和子视图 2。子视图 1 是固定高度,但子视图 2 应该能够在零高度和其内容高度之间交替。
自动布局为此杀死了我。
您想创建一个约束,将子视图 1 的顶部固定到其父视图的顶部,以及将子视图 2 的底部固定到其父视图的底部。约束格式字符串如下所示:
@"V:|[subview1][subview2]|"
这也将创建 subview1 和 suvbview2 正在接触的约束,这可能是您想要的。