A view that allows the scrolling and zooming of its contained views.
포함된 뷰를 스크롤하고 줌할 수 있는 뷰 입니다.
스토리보드에서 스크롤 뷰를 뷰 컨트롤러에 올리면 두 개의 레이아웃 가이드가 생기게 된다.
The layout guide based on the untransformed frame rectangle of the scroll view.
The layout guide based on the untranslated content rectangle of the scroll view.
The point at which the origin of the content view is offset from the origin of the scroll view.
scrollView.setContentOffset(CGPoint(x: 0,
y: scrollView.contentSize.height - scrollView.bounds.height),
animated: false)
bounds
가 아니라 frame
을 써도 똑같이 작동할 것이라는 것 역시 우리는 이전에 공부한 내용을 토대로 알 수 있다.scrollView.setContentOffset(CGPoint(x: 0,
y: scrollView.contentSize.height - scrollView.frame.height),
animated: false)
UIScrollView
frameLayoutGuide
contentLayoutGuide
UIScrollView의 contentOffset 이해
[iOS] UIScrollView 다루기 (storyboard / programatically)
[iOS] scrollView 개념 부터 구현까지 뽀개기 - HoonIOS