I have a problem of adjusting the UIView height in my project. I illustrated the project.
Let me explain about my project image.
Each Orange UIView has
Since UITableView
or UICollectionView
inherit from UIScrollView
they basically do not have an intrinsicContentSize
.
You have two ways to make the same height as the content size (the space that you can scroll):
intrinsicContentSize
method to return the contentSize
and the sizeThatFits:
method as well