我希望能够在Swift中正确读取NSUnderlineStyle的值。 比看起来更复杂。
首先,快速回顾一下。 NSUnderlineStyle是一个具有以下值的枚举:
NSUnderlineStyleNone = 0x00,
NSUnderlineStyleSingle = 0x01,
NSUnderlineStyleThick = 0x02,
NSUnderlineStyleDouble = 0x09,
NSUnderlinePatternSolid = 0x0000,
NSUnderlinePatternDot = 0x0100,
NSUnderlinePatternDash = 0x0200,
NSUnderlinePatternDashDot = 0x0300,
NSUnderlinePatternDashDotDot = 0x0400,
NSUnderlineByWord = 0x8000
有三个不同的选项组。根据Apple's documentation,"样式,模式和可选的单词掩码是“或”组合在一起产生的NSUnderlineStyleAttributeName
和NSStrikethroughStyleAttributeName
的值。"
NSUnderlineStyle 不实现新的OptionSet Protocol,这意味着值必须与整数按位运算相结合(显然)。如果是这样,可能会出现类似以下内容:
let operation: NSDragOperation = [.copy, .move]
if operation.contains(.copy) {
// Yay!
}
但遗憾的是,这不起作用。
我的理解是,如果B在A中,要正确检查带有数字的位标志,它是(A& B == B)。
然而,这似乎不适用于NSUnderlineStyle,我不知道为什么。我不是位掩码专家。
以下是展示问题的示例代码。
let style = NSUnderlineStyle.styleSingle.rawValue |
NSUnderlineStyle.patternDashDotDot.rawValue |
NSUnderlineStyle.byWord.rawValue
if style & NSUnderlineStyle.styleSingle.rawValue == NSUnderlineStyle.styleSingle.rawValue {
NSLog("style single found")
}
if style & NSUnderlineStyle.styleDouble.rawValue == NSUnderlineStyle.styleDouble.rawValue {
NSLog("style double found")
}
if style & NSUnderlineStyle.styleThick.rawValue == NSUnderlineStyle.styleThick.rawValue {
NSLog("style thick found")
}
if style & NSUnderlineStyle.patternSolid.rawValue == NSUnderlineStyle.patternSolid.rawValue {
NSLog("pattern solid found")
}
if style & NSUnderlineStyle.patternDash.rawValue == NSUnderlineStyle.patternDash.rawValue {
NSLog("pattern dash found")
}
if style & NSUnderlineStyle.patternDot.rawValue == NSUnderlineStyle.patternDot.rawValue {
NSLog("pattern dot found")
}
if style & NSUnderlineStyle.patternDashDot.rawValue == NSUnderlineStyle.patternDashDot.rawValue {
NSLog("pattern dash dot found")
}
if style & NSUnderlineStyle.patternDashDotDot.rawValue == NSUnderlineStyle.patternDashDotDot.rawValue {
NSLog("pattern dash dot dot found")
}
if style & NSUnderlineStyle.byWord.rawValue == NSUnderlineStyle.byWord.rawValue {
NSLog("by word flag found")
}
此代码应生成:
style single found
pattern dash dot dot found
by word flag found
但相反产生:
style single found
pattern solid found
pattern dash dot dot found
by word flag found
还有其他情况会失败。
如何正确阅读下划线样式?
非常感谢任何帮助。此外,如果有人对此失败有任何见解,那也是非常好的。
答案 0 :(得分:2)
"样式"的枚举值和"模式"不是位标志。例如,NSUnderlineStyleNone
和
NSUnderlinePatternSolid
都具有零值,并且
NSUnderlineStyleSingle
和NSUnderlineStyleDouble
有一点(0x01)
共同的。
您必须提取与每个组(样式,模式,标志)对应的位,并将该值与可能的值进行比较 枚举值,分别为每个组。
不幸的是,Apple并没有为每个组提供位掩码(到目前为止) 正如我所见)所以我们要定义自己的。 样式值(0x00,0x01,0x02,0x09)都使用位0 ... 3, 并且模式值(0x0,0x100,0x200,0x300,0x400)都使用 位8 ... 11。这表明了以下定义:
let underlineStyleMask = 0x000F
let underlinePatternMask = 0x0F00
然后可以用作
// Check style:
switch style & underlineStyleMask {
case NSUnderlineStyle.styleNone.rawValue:
NSLog("no style")
case NSUnderlineStyle.styleSingle.rawValue:
NSLog("single style")
case NSUnderlineStyle.styleDouble.rawValue:
NSLog("double style")
case NSUnderlineStyle.styleThick.rawValue:
NSLog("thick style")
default:
NSLog("unknown style")
}
// Check pattern:
switch style & underlinePatternMask {
case NSUnderlineStyle.patternSolid.rawValue:
NSLog("solid pattern")
case NSUnderlineStyle.patternDot.rawValue:
NSLog("dot pattern")
case NSUnderlineStyle.patternDash.rawValue:
NSLog("dash pattern")
case NSUnderlineStyle.patternDashDot.rawValue:
NSLog("dash dot pattern")
case NSUnderlineStyle.patternDashDotDot.rawValue:
NSLog("dash dot dot pattern")
default:
NSLog("unknown pattern")
}
// Check flags:
if style & NSUnderlineStyle.byWord.rawValue != 0 {
NSLog("by word flag")
}
但请注意,如果Apple添加更多定义,这可能会破坏 未来,例如
NSUnderlineStyleStrange = 0x22
会被错误地检测为NSUnderlineStyleThick
。