我一直在尝试创建一个带有圆角和阴影的自定义tableview单元格,我设法创建了圆角,但阴影只显示在角落而没有其他地方。
答案 0 :(得分:10)
对于阴影和圆角,您可以使用以下代码:
override func tableView(_ tableView: UICollectionView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath)
cell.layer.cornerRadius = 10
let shadowPath2 = UIBezierPath(rect: cell.bounds)
cell.layer.masksToBounds = false
cell.layer.shadowColor = UIColor.black.cgColor
cell.layer.shadowOffset = CGSize(width: CGFloat(1.0), height: CGFloat(3.0))
cell.layer.shadowOpacity = 0.5
cell.layer.shadowPath = shadowPath2.cgPath
return cell
}
你可以调整价值观,为你获得完美的阴影!
希望它有所帮助!
答案 1 :(得分:0)
似乎UITableviewCell不支持阴影。 Adding drop shadow to table view cell,请看一下。
答案 2 :(得分:-2)
在cellForRowAt indexPath
中写下面的代码 cell.contentView.layer.cornerRadius = 10
cell.contentView.layer.shadowColor = UIColor.blue.cgColor
cell.contentView.layer.shadowRadius = 3
cell.contentView.layer.shadowOpacity = 1.0
cell.contentView.clipsToBounds = true