gpt4 book ai didi

ios - 当我为我的 View 提供顶部边框时遇到问题

转载 作者:行者123 更新时间:2023-11-28 14:55:59 26 4
gpt4 key购买 nike

当我为我的 View 提供顶部边框时,它无法正常工作。我也在 Collection View 中使用它 cellforitematIndexPath

 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CellRID")

cell.viewForTotalMB.addTopBorderWithColor(color: UIColor(red: 72/255, green: 175/255, blue: 230/255, alpha: 1.0), width: 1)
cell.viewForTotalMB.layer.masksToBounds = false



return cell!
}

我正在为边框使用此扩展

extension UIView {

// lbl and txtfld Border line

func addTopBorderWithColor(color: UIColor, width: CGFloat) {
let border = CALayer()
border.backgroundColor = color.cgColor
border.frame = CGRect(x:0,y: 0, width:self.frame.size.width, height:width)
self.layer.addSublayer(border)
}

}

enter image description here

最佳答案

这不是您的解决方案,但可以找出您的 View 框架或 View 上的其他 View 覆盖层。

运行您的 XCode 项目并单击Debug View Hierarchy。您可以在那里看到您的 View 框架,并且可能会发现问题。

enter image description here

关于ios - 当我为我的 View 提供顶部边框时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49332980/

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