gpt4 book ai didi

ios - 使用 addSublayer() 添加 CATextLayer

转载 作者:行者123 更新时间:2023-11-28 05:56:40 25 4
gpt4 key购买 nike

我写这段代码:

let myAttributes = [
NSAttributedStringKey.font: UIFont(name: "Avenir-HeavyOblique", size: 15.0)! ,
NSAttributedStringKey.foregroundColor: UIColor.white
]
let myAttributedString = NSAttributedString(string: textRightUpLabel!, attributes: myAttributes )
let textLayer = CATextLayer()
textLayer.string = myAttributedString
textLayer.backgroundColor = UIColor.clear.cgColor
textLayer.frame = CGRect(x: self.frame.size.width - width + textMarginRightUpLabel, y: 8, width: width, height: height)
self.layer.addSublayer(textLayer)

这很好用,但它似乎增加了 2 层如何在我的 Storyboard中显示它:

storyboard image

所以问题是:为什么文本“3 DAYS LEFT”显示了 2 次?一个在好的地方,另一个在 ShapeLayer 后面?

感谢您的回复

最佳答案

将 texlayer 变量移出该函数并使其成为 View 的变量。

let textLayer = CATextLayer()

将它添加到层的位置检查并查看层是否已经包含这样的 textLayer,而不是一遍又一遍地添加它。抱歉,这在手机上有点乱。当我回到我的 Mac 时会检查并清理它。

if let subLs = self.sublayers, subLs.contains(textLayer) == true{//do nothing
}else{
self.layer.addSublayer(textLayer)
}

关于ios - 使用 addSublayer() 添加 CATextLayer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51304387/

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