본문 바로가기
iOS/iOS

UIScrollView

by 패쓰킴 2022. 11. 1.
728x90

스크롤을 최하단으로 이동

[self.scroll setContentSize:CGSizeMake(self.view.frame.size.width, self.scroll.frame.size.height + keyboardHeight)];
CGPoint bottom = CGPointMake(0, self.scroll.contentSize.height - self.view.bounds.size.height + self.scroll.contentInset.bottom);
if (bottom.y > 0) {
  [self.scroll setContentOffset:bottom animated:YES];
}
728x90

'iOS > iOS' 카테고리의 다른 글

UIPickerView  (0) 2022.11.02
navigation stack에서 특정 VC 삭제  (0) 2022.11.02
UISegmentedControl  (0) 2022.10.19
UITabBar  (0) 2022.10.19
UIscrollView dynamic height  (0) 2022.10.14

댓글