我已经将UITableView控件子类化,并且样式已分组,但我不需要单元格分隔符.我尝试将我的表视图的separatorStyle设置为none,但它不起作用.谁能帮我吗?
在分组表视图中,设置separatorStyle
不执行任何操作.如果要隐藏它,只需执行以下操作:
tableView.separatorColor = [UIColor clearColor];
用这个
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
要删除表视图的边框,请写下以下行:
self.myTableView.separatorColor = [UIColor clearColor];
如果要删除表视图的边框,也要删除单元格之间的边框,则必须同时写入两行:
self.myTableView.separatorColor = [UIColor clearColor]; self.myTableView.separatorStyle = UITableViewCellSeparatorStyleNone;