您想要突出显示字符串中的子字符串。 我正在为Twitter做一个应用程序,我想突出显示用户名和主题标签和url。我已经捕获了字符串和子字符串。我想要的是突出显示字符串中的子字符串。
编辑: 问题是,我不知道如何从该字符串中获取范围,因为我在Twitter上获得了该字符串而我不知道它。帮助我获得范围
for user in tweet.userMentions{
let userName:NSString = user.keyword
var atrString = NSMutableAttributedString(string:tweetTextLabel.text!)
atrString.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: //myproblem is here)
tweetTextLabel.text = atrString
}
}