Automatically Adjust UIView's Height to It'

2019-08-13 00:45发布

I am using StoryBoards and Autolayout.

Below is the hierarchy:

- Superview
-- UIView (ContentView)
--- UITextField
--- UITextField
--- UITextField
--- UITextField

The UIView(ContentView)'s is constrained to Left, Top, Right of the SuperView with the offset of 20;

The Bottom of UIView(ContentView) is not constrained to anything.

I would like the contentView's height adjusted based on how many textField in it. Any thoughts how I could achieve this using AutoLayout?

I am very new in Autolayout. Used to do all UI in code.

Any thoughts?

Thank you!!

1条回答
走好不送
2楼-- · 2019-08-13 01:05

Silly me, found the answer, I simply restrict the height of all the subviews and then constraint the most bottom of the bottom subview to the UIView/ContentView

查看更多
登录 后发表回答