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];

上一篇:ok6410,mmu,内存管理


下一篇:C+++string类如何判断字符串为空