-
[UICollectionView] scrollToTop, scrollToBottom 간단 구현개발 삽질기/iOS 2020. 1. 30. 23:02
UICollectionView에서 scrollToTop과 scrollToBottom을 구현할 일이 있어, 간단하게 만들어 보았습니다.
import UIKit extension UICollectionView { func scrollToTop() { self.setContentOffset(.zero, animated: true) } func scrollToBottom() { let offsetY = self.collectionViewLayout.collectionViewContentSize.height - self.bounds.size.height self.setContentOffset(CGPoint(x: 0, y: offsetY > 0 ? offsetY : 0 ), animated: true) } }
으아 요새 정신없이 바쁘다보니 블로그 글 꾸준히 쓰는 것도 정말 힘들군요. 블로그 꾸준히 쓰시는 분들 정말 존경합니다...
오늘도 좋은 하루 보내세요!
'개발 삽질기 > iOS' 카테고리의 다른 글
[iOS]CALayer Shadow가 안 보일 때 확인해볼 것 (0) 2020.02.12 [iOS] 하드웨어 모델명 얻어오기 (0) 2020.02.12 [iOS] Objective C에서 Simulator인지 실 기기인지 구별하기 (1) 2020.02.10 [UITextField] 비밀 번호 입력 받기 (0) 2020.01.19 UITableHeaderFooterView backgroundColor 변경법 (0) 2020.01.02