gpt4 book ai didi

string - 如何在 Swift 中更改字符串中单个单词的颜色

转载 作者:行者123 更新时间:2023-11-30 14:04:08 24 4
gpt4 key购买 nike

因此,作为某些上下文,我有一个字典,它根据 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com