Apple UIScrollView:
scrollsToTop
, ,
, scrollview, .
scrollToRowAtIndexPath: atScrollPosition: :
, , , .
three20
three20, , , UITableView+Additions.h > - (void)scrollToFirstRow:(BOOL)animated
[self.tableView scrollToFirstRow:YES]
three20
three20, three20 :
- (void)scrollToFirstRow:(BOOL)animated {
if ([self numberOfSections] > 0 && [self numberOfRowsInSection:0] > 0) {
NSIndexPath* indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop
animated:NO];
}
}
, (), UIScrollView , ( three20):
- (void)scrollToTop:(BOOL)animated {
[self setContentOffset:CGPointMake(0,0) animated:animated];
}
:
[self.tableView setContentOffset:CGPointMake(0,0) animated:YES];