如何在 macOS 上以编程方式在 Swift 中添加 NSView

How do I programmatically add an NSView in Swift on macOS

正在尝试以编程方式添加一个简单的 NSView。

没有出现

** 答案 **:在 .backgroundColor = .black

之前执行 .wantsLayer = true

我将颜色设置为黑色,所以我希望 window 中有一个黑色方块。

我正在使用 Xcode 10.2 Swift 5

import Cocoa

class ViewController: NSViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        let newView = NSView(frame: NSRect(x: 10,y: 10, width: 100,height: 100))
        newView.layer?.backgroundColor = .black
        newView.wantsLayer = true
        self.view.addSubview(newView)
    }
}
import Cocoa

let frame = CGRect(origin: .zero, size: CGSize(width: 100, height: 100))
let view = NSView(frame: frame)

view.wantsLayer = true
view.layer?.backgroundColor = NSColor.black.cgColor
self.view.addSubView(view)