gpt4 book ai didi

ios - 仅在 swift 中右侧的 UITextField 边框

转载 作者:行者123 更新时间:2023-11-28 10:12:19 25 4
gpt4 key购买 nike

在我的 swift 项目中,我只想为我的文本字段添加右侧边框,因为我在单个 tableviewcell 中有两个文本字段,所以,我想将它们显示为与第一个文本字段的右侧边框分开。

任何建议,谢谢!!

最佳答案

我已经在文本域中使用了这个方法

let border = CALayer()
let height = CGFloat(2.0)
border.borderColor = UIColor.darkGray.cgColor
border.frame = CGRect(x: searchField.frame.size.width - height, y: 0, width: searchField.frame.size.width, height: searchField.frame.size.height)

border.borderWidth = height
searchField.layer.addSublayer(border)
searchField.layer.masksToBounds = true

下面是上面代码的结果

outcome of the code above

关于ios - 仅在 swift 中右侧的 UITextField 边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46362550/

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