本文介绍了如何使用 NSUnderlineStyle.PatternDot的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用带有虚线下划线的 NSMutableAttributedString 是我的代码,但似乎没有任何模式有效,我是否遗漏了什么?
I am trying to use NSMutableAttributedString with dotted underline below is my code but none of the Patterns seem to work am I missing something ?
var str : NSMutableAttributedString = NSMutableAttributedString(string: "HelloWorld")
str.addAttribute(NSUnderlineStyleAttributeName , value: NSNumber(integer:(NSUnderlineStyle.PatternDot).rawValue), range: NSMakeRange(0, str.length))
推荐答案
你必须这样做:
Xcode 10 • Swift 4.2 或更高版本
yourLabel.attributedText = NSAttributedString(string: "Hello World !!!", attributes: [.underlineStyle: NSUnderlineStyle.patternDot.union(.single).rawValue])
注意:对于较旧的 Swift 语法检查编辑历史
Note: for older Swift syntax check edit history
这篇关于如何使用 NSUnderlineStyle.PatternDot的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!