我写这段代码:

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)

并且效果很好,但是似乎在我的情节提要中显示了两层:

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

多谢您的回覆

最佳答案

将texlayer变量移出该函数,并使其成为视图变量。

let textLayer = CATextLayer()

将其添加到图层的位置,检查该图层是否已经包含这样的textLayer,而不是一遍又一遍地添加它。抱歉,这在移动设备上有点混乱。当我回到Mac时,将对其进行检查并清理。
if let subLs = self.sublayers, subLs.contains(textLayer) == true{//do nothing
 }else{
      self.layer.addSublayer(textLayer)
  }

10-08 05:49