Open tak-bro opened 7 years ago
테이블뷰는 스크롤뷰의 형태이므로
scrollViewDidScroll() 함수를 호출하여 스크롤의 일정 퍼센테이지를 계산하여
자신이 정한 퍼센트에 도달하면 데이터를 추가적으로 불러온다
func scrollViewDidScroll(scrollView: UIScrollView){
let foregroundHeight = tableView.contentSize.height - CGRectGetHeight(tableView.bounds) let percentageScroll = tableView.contentOffset.y / foregroundHeight
// percetageScroll 를 이용하여 기준점을 정한다.
}
http://pjkstory.blogspot.jp/2016/06/swift-2-swift-tableview-infinite-scroll.html
Pinterest UICollectionView https://www.raywenderlich.com/107439/uicollectionview-custom-layout-tutorial-pinterest
참고할만한 사이트 http://realignist.me/code/2016/06/05/swift-snippets.html http://swift.leantra.kr/