我有一个textview,其中包含文本和一些项目列表。我想以黑色显示文本,以橙色显示项目符号。怎么做。? 提前致谢。
答案 0 :(得分:1)
在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
答案 1 :(得分:0)
使用“•”应该对你有用 检查UILabel with bullet points和Bullet list in UITextView 要将文本与项目符号列表组合,您应使用NSAttributedString。 Here是您感兴趣的一个例子。