以编程方式创建NSWindow

问题描述 投票:10回答:2

我想以编程方式创建一个新的NSWindow,但是我找不到成功的方法。这个简单的代码不会显示新窗口。怎么了?

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

    @IBOutlet weak var window: NSWindow!

    func applicationDidFinishLaunching(aNotification: NSNotification) {
        let win = NSWindow(contentRect: NSMakeRect(100, 100, 600, 200),
            styleMask: NSResizableWindowMask,
            backing: NSBackingStoreType.Buffered, defer: true)

        let controller = NSWindowController(window: win)

        controller.showWindow(self)
        win.makeKeyAndOrderFront(win)
    }
}
swift xcode macos swift3 nswindow
2个回答
12
投票

Xcode 11•Swift 5.1

import Cocoa

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
    @IBOutlet weak var window: NSWindow!
    let newWindow = NSWindow(contentRect: .init(origin: .zero,
                                                size: .init(width: NSScreen.main!.frame.midX,
                                                            height: NSScreen.main!.frame.midY)),
                             styleMask: [.closable],
                             backing: .buffered,
                             defer: false)
    func createNewWindow() {
        newWindow.title = "New Window"
        newWindow.isOpaque = false
        newWindow.center()
        newWindow.isMovableByWindowBackground = true
        newWindow.backgroundColor = NSColor(calibratedHue: 0, saturation: 1.0, brightness: 0, alpha: 0.7)
        newWindow.makeKeyAndOrderFront(nil)
    }
    func applicationDidFinishLaunching(_ aNotification: Notification) {
        createNewWindow()
    }
    func applicationWillTerminate(_ aNotification: Notification) {
        // Insert code here to tear down your application
    }
}

Window Style Mask

Sample project


0
投票

这是一个没有任何花哨的工作示例,已更新为Swift 4.2。

它创建一个带有和不带有笔尖的裸窗口,具体取决于您调用的函数。

在IB中,取消选中“初始控制器”的所有位置。为了使该笔尖版本起作用,必须为IB提供的窗口控制器提供一个故事板ID“ WindowController”。

    import Cocoa

    @NSApplicationMain
    class AppDelegate: NSObject, NSApplicationDelegate, DebugHelper {
        var myName: String = "AppDelegate"
        var windowController: NSWindowController!
        var window: NSWindow!

        func applicationDidFinishLaunching(_ aNotification: Notification) {
            //nib()
            diy()
        }
        func nib() {
            let storyboard = NSStoryboard(name: NSStoryboard.Name("Main"), bundle: nil)
            guard let wc = storyboard.instantiateController(withIdentifier: "WindowController") as? NSWindowController else { return }
            windowController = wc
            wc.showWindow(self)
        }
        func diy() {
            window = NSWindow()
            window.styleMask = NSWindow.StyleMask(rawValue: 0xf)
            window.backingType = .buffered
            window.contentViewController = ViewController()
            window.setFrame(NSRect(x: 700, y: 200, width: 500, height: 500), display: false)
            windowController = NSWindowController()
            windowController.contentViewController = window.contentViewController
            windowController.window = window
            windowController.showWindow(self)
        }
        func applicationWillTerminate(_ aNotification: Notification) {
            // Insert code here to tear down your application
        }
    }

    import Cocoa

    class ViewController: NSViewController, DebugHelper {
        var myName: String = "ViewController"

        override func loadView() {
            view = NSView()
        }
    }
© www.soinside.com 2019 - 2024. All rights reserved.