'scrollViewDidEndDecelerating'에 해당되는 글 1건

  1. 2016.10.10 [IOS / Object-C] - UITableView scroll bottom check

[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");

  }

}

반응형
: