本文介绍了如何使用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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!