我有一个将 NSAttributedString 设置为粗体的方法:

 func setBold(text: String) -> NSMutableAttributedString {

    guard let font = UIFont.CustomNormalBoldItalic() else {
        fatalError("font not found")
    }

    let string = NSMutableAttributedString(string:"\(text)", attributes: [NSFontAttributeName : font])

    self.setAttributedString(string)
    return self
}

这就是它的调用方式,通常可以正常运行:
let formattedString = NSMutableAttributedString()
formattedString.setBold("Your text here")

但是,我试图将NSLocalizedString的子字符串的文本设置为粗体。所以我会这样尝试:
let formattedString = NSMutableAttributedString()

return NSAttributedString(string: String.localizedStringWithFormat(
    NSLocalizedString("message", comment: ""),
    formattedString.setBold(NSLocalizedString("message.day", comment: "")),
    NSLocalizedString("message.time", comment: "")
))

而不是“今天晚上10点开始”,它提供以下输出:
Today{
NSFont = "<UICTFont: 0x7fb75d4f1330> font-family: \"CustomText-MediumItalic\"; font-weight: normal; font-style: italic; font-size: 14.00pt";
} starting at 10pm {
}

谁能告诉我我要去哪里哪里或如何解决这个问题?我有另一种方法的原因是因为我有许多LocalizedStrings设置为粗体,并认为这可能是一个简单的解决方案。向不涉及大量重复/代码行的其他想法/解决方案开放。

最佳答案

我只是将外部字符串html制成,然后让AttributedString处理繁重的工作。这是 swift 3,但 swift 2.3应该同样简单。还有一些可选的处理要添加,但是您可以领会到它的要旨。

// samples so I don't have to put a string resource in my playground, you
// could just as easily pull these from NSLocalizedString
let format = "<b>%1$@</b> starting at <b>%2$@</b>"
let day = "Today"
let time = "10 PM"
let raw = String(format:format, day, time)

let attr = AttributedString(
    html: raw.data(using: .utf8)!,
    options: [NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType],
    documentAttributes:nil
)!

10-08 05:46