[IOS / Object-C] - UITableView scroll bottom check
IOS ( Object-C ) 2016. 10. 10. 14:39- (void) scrollViewDidEndDecelerating : (UIScrollView *) scrollView {
NSArray *visibleRows = [__tableView visibleCells];
UITableViewCell *lastVisible = [visibleRows lastObject];
NSIndexPath *path = [__tableView indexPathForCell:lastVisible];
// NSLog(@"Section : %d // Row : %d", path.section, path.row);
if( path.row == [__tableData count] - 1 ) {
NSLog(@"Scroll Bottom");
}
}