ios tableView那些事 (十)设置 tableview 的分割线

 [tableview   setSeparatorColor:[UIColor    blueColor]];  //设置分割线为蓝色



隐藏UITableViewCell的分隔线


[self.myTableView       setSeparatorStyle:UITableViewCellSeparatorStyleNone]; 


 UITableViewCellSeparatorStyle有如下几种 

typedef NS_ENUM(NSInteger, UITableViewCellSeparatorStyle) {

    UITableViewCellSeparatorStyleNone,

    UITableViewCellSeparatorStyleSingleLine,

    UITableViewCellSeparatorStyleSingleLineEtched  // This separator style is only supported for grouped style table views currently

};

上一篇:德州市公共资源交易平台大数据


下一篇:MySQL 大批量插入,如何过滤掉重复数据?