33 lines
973 B
Swift
33 lines
973 B
Swift
![]() |
import Cocoa
|
||
|
import SwiftUI
|
||
|
|
||
|
@NSApplicationMain
|
||
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
||
|
|
||
|
var window: NSWindow!
|
||
|
|
||
|
|
||
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
||
|
// Create the SwiftUI view that provides the window contents.
|
||
|
let contentView = MainView()
|
||
|
|
||
|
// Create the window and set the content view.
|
||
|
window = NSWindow(
|
||
|
contentRect: NSRect(x: 0, y: 0, width: 480, height: 300),
|
||
|
styleMask: [.titled, .closable, .miniaturizable, .resizable, .fullSizeContentView],
|
||
|
backing: .buffered, defer: false)
|
||
|
window.isReleasedWhenClosed = false
|
||
|
window.center()
|
||
|
window.setFrameAutosaveName("Main Window")
|
||
|
window.contentView = NSHostingView(rootView: contentView)
|
||
|
window.makeKeyAndOrderFront(nil)
|
||
|
}
|
||
|
|
||
|
func applicationWillTerminate(_ aNotification: Notification) {
|
||
|
// Insert code here to tear down your application
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|