'scrollView'에 해당되는 글 2건

  1. 2016.10.10 [IOS / Object-C] - UITableView scroll bottom check
  2. 2014.08.01 [IOS] - IOS ScrollView 스크롤 초기화

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

  }

}

반응형
:

[IOS] - IOS ScrollView 스크롤 초기화

IOS ( Object-C ) 2014. 8. 1. 15:48
반응형


[scrollBody setContentOffset:CGPointZero animated:YES];

반응형
: