NSTextView.typingAttributes 接受的密钥是什么?

What Are The Accepted Keys for NSTextView.typingAttributes?

在 macOS 的 Swift 中,我有以下文本视图并想设置输入到其中的文本的字体大小,如下所示:

myTextView.typingAttributes = ["Unknown" : NSFont(name: "Helvetica", size: 18)]

我目前无法执行此操作,因为我不知道,也无法在 Apple Documentation Page,接受的键是 typingAttributes。

有谁知道这些是什么,或者在哪里可以找到它们?

您可以在 documentation for NSAttributedString under Character Attributes 中找到支持的属性名称。对于字体,您将使用 NSFontAttributeName.