The frame rectangle, which describes the view’s location and size in its superview’s coordinate system.
SuperView's coordenate system(수퍼 뷰의 좌표계)에서 뷰의 위치와 크기를 설명하는 프레임 사각형입니다.
즉, 자신의 부모뷰를 기준으로 origin의 위치를 정하는 것이 frame
참고로 여기서 origin은 x, y, size은 width, height
인터페이스 빌더에서 보이는 x, y는 frame을 말한다
The bounds rectangle, which describes the view’s location and size in its own coordinate system.
animate를 활용해서 그려보고 이해했더니 더 와닿는 느낌이었다
frame의 x를 50에서 0으로, frame의 y를 100에서 0으로
bounds의 x를 0에서 30으로, bounds의 y를 0에서 80으로
reference
https://zeddios.tistory.com/203