我的屏幕顶部有{"aps":{"uri":"myApp://test","type":"test_push","badge":1,"content-available":1}}
,我想为其添加1个像素的右边框。
这是我目前的代码:
UIView
但我无法让它发挥作用。
如何为var border = CALayer()
border.backgroundColor = UIColor(red: 241, green: 10, blue: 9, alpha: 1).cgColor
border.frame = CGRect(x: topView.frame.width + 1, y: 0, width: 1, height: topView.frame.height)
topView.layer.addSublayer(border)
添加右边框?
提前致谢!
答案 0 :(得分:6)
此代码适用于我,您正在设置视图边界之外的框架位置,将其更改为-1(而不是宽度+ 1)然后它应按预期显示。 (我改变了颜色,使其更容易在游乐场看到)
let view = UIView(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
view.backgroundColor = UIColor.white
let borderLayer = CALayer()
borderLayer.backgroundColor = UIColor.red.cgColor
borderLayer.frame = CGRect(x: view.frame.width - 1, y: 0, width: 1, height: view.frame.height)
view.layer.addSublayer(borderLayer)
答案 1 :(得分:0)
Cliptobounds = false或在框架内保留该行