标签:
//隐藏
self.tableView.showsVerticalScrollIndicator = NO;
//修改颜色
self.tableView.indicatorStyle=UIScrollViewIndicatorStyleWhite;
//选中0组0行
NSIndexPath *selectedIndexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:selectedIndexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
iOS UITableView 修改滚动条颜色 默认选中第一条
标签:
原文地址:http://www.cnblogs.com/rookie-dream/p/5884357.html