我想在swift中为我的表视图添加一个底部边框,它将充当分隔符。我尝试了其他一些问题的答案,但其中大多数都包括CGRectMake
,现在已经过时了。有什么想法吗?
以下是我正在使用的代码,它不会产生错误消息,但不起作用:
let border = CALayer()
let width = CGFloat(2.0)
border.borderColor = UIColor.darkGray.cgColor
border.frame = CGRect(x: 0, y: tableView.frame.size.height - width, width: tableView.frame.size.width, height: tableView.frame.size.height)
border.borderWidth = width
tableView.layer.addSublayer(border)
tableView.layer.masksToBounds = true
谢谢!