You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Intricsic Size란 본질적인 컨텐츠(내용)의 크기를 말한다.
UIButton이나 UILabel등 컨텐츠 내부의 자체적인 크기를 정할 수 있는 경우 Intrinsic Content Sizef를 가지며, 간단히 위치만 잡아줘도 이미 컨텐츠 자체의 크기가 결정되어있기 때문에 오류가 나지 않는다.
Intrinsic Content Size는 본질적인 컨텐츠 크기라는 의미를 지닌다. UILabel과 UIButton의 오토레이아웃을 잡아줄 때 위치만 잡아줘도(즉, width와 height를 잡아주지 않아도) 에러가 발생하지 않는다. 그 이유가 바로 자체적으로 컨텐츠 크기 만큼의 크기를 결정하는 Intrinsic Content Size를 가지기 때문이다.
런타임 시에 컨텐츠를 변경시키더라도 에러가 발생하지 않고, 크기가 잘 조정되는 것을 확인할 수 있다.
No description provided.
The text was updated successfully, but these errors were encountered: