我要说我对Swift很陌生,而且我在v <- c("hello", "*hi", "world")
v[!grepl("^\\*", v)] # looks for the elements that begins with * and negates the result
#[1] "hello" "world"
中设置了NSMutableAttributedString
。
UILabel
最后一行给我:var attributedString = NSMutableAttributedString("random string for this example")
attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: NSMakeRange(1, 3))
tweetTextLabel?.text = attributedString
所以我甚至无法编译。
我也尝试过:
'_ ??' is not convertible to '()'
但是这样我就失去了颜色属性
答案 0 :(得分:1)
您应该设置为attributedText
的{{1}}属性,例如:
UILabel