IOS开发之tableview的相关资料

来自:互联网
时间:2023-04-14
阅读:

ios tableView 设置 tableview 的分割线

实现效果图:

IOS开发之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
};
返回顶部
顶部