What is the difference of intrinsic size vs system width/height constraints?

后端 未结 4 692
梦毁少年i
梦毁少年i 2021-02-02 14:08

Starting to move from springs and structs layout to auto layout and have some questions regarding \"Intrinsic Size\" setting.

If you set \"Intrinsic Size\" of some view

4条回答
  •  北恋
    北恋 (楼主)
    2021-02-02 14:49

    When you set the intrinsic size to "Placeholder", you tell the Xcode layout system that your view will have size dependent on its content (like a label can be dependent on its text content). The system only knows and maintains its own types of views with intrinsic size. If you wish to have a similar experience with a view of your own, to consider the view as if it has an intrinsic size. Then you set up your constraints as if the view should grown or shrink depending on its content. Finally, you implement the intrinsicContentSize method to calculate and return the correct size of the content. If the content changes and a new calculation should be performed, you call invalidateIntrinsicContentSize on your view. Depending on how you have set up your constraints, your view will either grow and/or shrink, or it will be static (like you can set a width and height constrains on a label, and it remains static).

提交回复
热议问题