我在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
有任何帮助吗?谢谢!