如何使NSTextView图层支持? 我知道您可以通过将NSView.wantsLayer属性设置为true来支持NSView层。 当我在NSTextView上执行此操作时,通常显示的文本不可见。
这是我的快捷(游乐场)代码:
import Cocoa
import QuartzCore
let tv = NSTextView(frame: NSRect(x: 0, y: 0, width: 100, height: 50))
tv.string = "Hello world."
tv.wantsLayer = true
属性tv.layer
返回一个NSTextViewBackingLayer,听起来至少与显示文本有关。
这是怎么回事?
谢谢。