在textview中的文本中添加彩色项目符号

时间:2015-02-04 11:42:09

标签: ios objective-c iphone

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

2 个答案:

答案 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 pointsBullet list in UITextView 要将文本与项目符号列表组合,您应使用NSAttributedStringHere是您感兴趣的一个例子。