[iOS] Bounds 와 Frame 의 차이점

"What's the difference between Bounds and Frame"

Posted by JacksonJang on April 13, 2024

요약 : bounds는 자기 자신 기준, frame은 상위(부모)뷰 기준

Bounds 와 Frame 의 차이점


Apple Developer Documnet

Frame

The frame rectangle, which describes the view’s location and size in its superview’s coordinate system.

Bounds

The bounds rectangle, which describes the view’s location and size in its own coordinate system.


설명

frame

1
상위뷰(부모 뷰) 의 좌표 시스템안에서 뷰의 위치와 크기를 나타낸다.

bounds

1
자기 자신의 좌표 시스템 안에서 뷰의 위치와 크기를 나타낸다.