UITableView相关

//去掉分割线

[tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];


//不显示选中颜色

cell.selectionStyle=UITableViewCellSelectionStyleNone;

//可显示右边的小箭头

self.accessoryType=UITableViewCellAccessoryDisclosureIndicator;


//设置进度条是否显示

tableView.showsVerticalScrollIndicator=NO;

tableView.showsHorizontalScrollIndicator=NO;


你可能感兴趣的:(UITableView相关)