作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,作为某些上下文,我有一个字典,它根据 Parse 返回的错误代码保存一些自定义错误消息。您可以在下面看到一个:
var parseErrorDict: [Int:String] = [
203: "This email address \(emailTextField.text) is already registered."
]
我想要的是将电子邮件地址填充为不同的颜色或粗体。这可能吗?
对 Swift 还很陌生,所以请清楚地解释或帮助:) 提前致谢。
最佳答案
您想要使用属性字符串来编辑字符串的不同部分。在您的情况下,您首先将字符串分解为三个部分:开头、中间和结尾。然后您可以为这三个部分添加属性,例如将中间部分(电子邮件地址)设为红色,然后您可以将这三个部分再次附加在一起:
// The first part of the string should be mutable as parts will be appended to it
var attributedString = NSMutableAttributedString(string: "This email address ")
// Here we specify the attribute that is will be applied to the middle part
var attributes = [NSForegroundColorAttributeName: UIColor.redColor()]
var attributedStringEmail = NSAttributedString(string: "someone@somewhere.com", attributes: attributes)
// The end part
var attributedStringEnd = NSAttributedString(string: " is already registered.")
// Combine the three parts
attributedString.appendAttributedString(attributedStringEmail)
attributedString.appendAttributedString(attributedStringEnd)
// Give the label its text
label.attributedText = attributedString
关于string - 如何在 Swift 中更改字符串中单个单词的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32618477/
我是一名优秀的程序员,十分优秀!