gpt4 book ai didi

ios - 向 TextView 中的文本添加彩色项目符号

转载 作者:行者123 更新时间:2023-11-29 02:19:35 24 4
gpt4 key购买 nike

我有一个包含文本和一些项目列表的 TextView 。我想以黑色显示文本,以橙色显示项目符号。怎么做。?提前致谢。

最佳答案

在 swift 3.1 中

  let  DelevieryDateString = "●" + "This is a list item!"

let DelevieryDateStr: NSMutableAttributedString = NSMutableAttributedString(string: DelevieryDateString)

DelevieryDateStr.addAttribute(NSForegroundColorAttributeName,
value: UIColor.green, //color code what you want
range: NSRange(
location:0, // Find the location of the bullet and replace it
length: 1))
lblitem.attributedText = DelevieryDateStr

关于ios - 向 TextView 中的文本添加彩色项目符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28320512/

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