将NSView放在SKScene上?

时间:2019-03-19 09:06:27

标签: nsview swift-playground skscene addsubview skview

im试图将NSView作为子视图添加到我的SKView中。我在此SKView中有一个SKScene,我认为我的NSView在此场景之下。如何将其添加到我的SKScene之上?

这是我用来将NSView添加到我的SKView中的代码:

let canvas = NSView(frame: NSRect(x: 0.0, y: 0.0, width: 250.0, height: 250.0))
canvas.layer?.backgroundColor = CGColor.black
self.view?.addSubview(canvas, positioned: .above, relativeTo: nil)

0 个答案:

没有答案