gpt4 book ai didi

ios - UITableViewCell Layer Shadow Overlap Cell 上面

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:29:16 33 4
gpt4 key购买 nike

一切都在标题中。

我有一个带有单元格的 UITableView。 cells 有一个Shadow (self.layer.shadow...)。

问题是一个单元格阴影重叠上方的单元格。我怎样才能防止这种行为?

enter image description here

这是我单元格中的代码:

    self.layer.shadowColor = UIColor.gray.cgColor
self.layer.shadowOffset = .zero
self.layer.shadowOpacity = 0.15
self.layer.shadowRadius = 10
self.layer.cornerRadius = 8
backgroundColor = .white

最佳答案

使用此代码添加阴影:-

self.layer.masksToBounds = false
self.layer.shadowOffset = CGSize(width: -1, height: 1)
self.layer.shadowOpacity = 0.2
self.layer.cornerRadius = 8

关于ios - UITableViewCell Layer Shadow Overlap Cell 上面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50083917/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com