标签:
self.tableView.showsVerticalScrollIndicator = NO;
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:2];
CGRect frame = [tableview rectForSection:indexPath.section];
[tableview setContentOffset:CGPointMake(0, frame.origin.y) animated:YES];
选中某一行后想要tableView自动滚动使得选中行始终处于table的top、middle或者bottom,使用以下方法中的一个就可以实现:
[tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
// [tableView scrollToNearestSelectedRowAtScrollPosition:UITableViewScrollPositionBottom animated:YES];
隐藏UITableView的滚动条以及修改滚动条的颜色,UITableView 滚动到指定行 section
标签:
原文地址:http://www.cnblogs.com/allanliu/p/4215624.html