1. 程式人生 > >ios tableView那些事 (十)設定 tableview 的分割線

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

};

效果如下