在哪里可以找到有关 NSTextStorage editedMask 的一些文档?
Where can I find some documentation on NSTextStorage editedMask?
NSTextStorage 文档提到 editedMask
根据文档:
Returns the kinds of edits pending for the receiver
但是,我似乎无法在任何地方(在文档中或 NSTextStorage
api 中找到此掩码的任何位标志。有谁知道我在哪里可以找到此掩码的详细信息?(我也搜索了 Whosebug,虽然我找到了有关掩码使用的问题,但我仍然找不到位定义)。
我相信它是 NSTextStorageEditedOptions
枚举值的位掩码:NSTextStorageEditedAttributes
and/or NSTextStorageEditedCharacters
.
NSTextStorage 文档提到 editedMask
根据文档:
Returns the kinds of edits pending for the receiver
但是,我似乎无法在任何地方(在文档中或 NSTextStorage
api 中找到此掩码的任何位标志。有谁知道我在哪里可以找到此掩码的详细信息?(我也搜索了 Whosebug,虽然我找到了有关掩码使用的问题,但我仍然找不到位定义)。
我相信它是 NSTextStorageEditedOptions
枚举值的位掩码:NSTextStorageEditedAttributes
and/or NSTextStorageEditedCharacters
.