블로그 이미지
Sunny's

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

'scroll'에 해당되는 글 1

  1. 2012.03.23 tableView 스크롤 시키기
2012. 3. 23. 16:54 IPhone


■ 테이블 뷰 맨 위로 스크롤 시키기
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];

* 편법
[self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];



■ 테이블 뷰 맨 아래로 스크롤 시키기
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:([self.tableView numberOfRowsInSection:0]-1) inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];

posted by Sunny's
prev 1 next