gpt4 book ai didi

swift - UITableViewCell 中的 ClipsToBounds

转载 作者:行者123 更新时间:2023-11-28 06:24:06 24 4
gpt4 key购买 nike

我一直在尝试将 UITableViewCell 的子类中的 clipsToBounds 设置为 true 但不知何故它变成了 false 再次:

class CustomCell: UITableViewCell {

override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)

contentView.clipsToBounds = true
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

override func layoutSubviews() {
print(contentView.clipsToBounds) // false
super.layoutSubviews()
print(contentView.clipsToBounds) // false
}
}

是否有理由让它在contentView中再次变为false?我可以通过在 layoutSubviews() 中将 clipsToBounds 设置为 true 来“解决”这个问题,但感觉不对。

最佳答案

您可以尝试在 layoutSubviews() 中设置属性。您还可以使用 awakeFromNib() 函数将 clipsToBounds 设置为 true..

关于swift - UITableViewCell 中的 ClipsToBounds,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42503093/

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