iOS UITableView 修改滚动条颜色 默认选中第一条
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS UITableView 修改滚动条颜色 默认选中第一条相关的知识,希望对你有一定的参考价值。
//隐藏
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 修改滚动条颜色 默认选中第一条的主要内容,如果未能解决你的问题,请参考以下文章
Swift实现修改UITableView,UIScrollView滚动条颜色
按下按钮时滚动以刷新 iOS - 非 UITableView