检测标签中的属性字符串

时间:2017-01-26 19:50:34

标签: ios swift string swift3 nsattributedstring

我在UILabel的几个位置创建属性字符串。 如何检测每一个点击,如何检测哪一个被点击?有办法吗?

这就是我添加属性字符串的方式:

    let anotherAttribute = [NSBackgroundColorAttributeName: UIColor.yellow ]
    let attributedString: NSMutableAttributedString = NSMutableAttributedString(string: "hello my name is bla", attributes: anotherAttribute
    attributedString.addAttributes(anotherAttribute, range: NSRange(location: 9, length: 4))
    self.descLabel.attributedText = attributedString

有任何帮助吗?谢谢!

0 个答案:

没有答案