具有圆角半径和阴影的SWIFT UITableViewCell

use*_*849 6 ios swift swift3

我一直在尝试创建一个带有圆角和阴影的自定义tableview单元格,我设法创建了圆角,但阴影只显示在角落而没有其他地方.

Mr.*_*der 11

对于阴影和圆角,您可以使用以下代码:

 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
 }
Run Code Online (Sandbox Code Playgroud)

你可以调整价值,你将获得完美的阴影!

希望能帮助到你!