//---------------UITableView---------------------
NSIndexPath *scrollIndexPath = [NSIndexPath indexPathForRow:10 inSection:0];
[[self tableView] scrollToRowAtIndexPath:scrollIndexPath
atScrollPosition:UITableViewScrollPositionTop animated:YES];
//---------------UICollectionView------------------
NSIndexPath *scrollIndexPath = [NSIndexPath indexPathForRow:10 inSection:0];
self.collecView scrollToItemAtIndexPath:scrollIndexPath atScrollPosition:UICollectionViewScrollPositionTop animated:YES
网友评论