Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SWIFT

swift collection view check if you are at the bottom

 func scrollViewDidScroll(_ scrollView: UIScrollView) {
    let height = scrollView.frame.size.height
    let contentYoffset = scrollView.contentOffset.y
    let distanceFromBottom = scrollView.contentSize.height - contentYoffset
    if distanceFromBottom < height {
        print(" you reached end of the table")
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #swift #collection #view #check #bottom
ADD COMMENT
Topic
Name
4+5 =