如何更改表格视图的分隔线颜色?但我只想改变第一行。
这适用于整个tableview。
tableView.separatorColor = [UIColor blueColor];
答案 0 :(得分:2)
cellForRowAtIndexPath
中根据行设置线条视图的颜色。如果您只想更改第一行,那么您指的是第一行而不是第一行和第二行之间的行,那么请考虑使用UITableView' tableHeaderView
。
答案 1 :(得分:-1)
试试这个
override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == 0 {
tableView.separatorColor = UIColor.blueColor()
} else {
tableView.separatorColor = UIColor.greenColor()
}
}