Skip to content

Instantly share code, notes, and snippets.

@karwa
Created February 3, 2020 14:41
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save karwa/5207e232ac9ec53f0276252ab5e3ee07 to your computer and use it in GitHub Desktop.
Save karwa/5207e232ac9ec53f0276252ab5e3ee07 to your computer and use it in GitHub Desktop.
#! /usr/bin/swift
//
// - This is just some AppKit boilerplate to launch a window.
//
import AppKit
@available(OSX 10.15, *)
class AppDelegate: NSObject, NSApplicationDelegate {
let window = NSWindow()
let windowDelegate = WindowDelegate()
func applicationDidFinishLaunching(_ notification: Notification) {
let contentSize = NSSize(width:800, height:600)
window.setContentSize(contentSize)
window.styleMask = [.titled, .closable, .miniaturizable, .resizable]
window.level = .floating
window.delegate = windowDelegate
window.title = "TestView"
let graph = NSHostingView(rootView: DemoView())
graph.frame = NSRect(origin: NSPoint(x:0, y:0), size: contentSize)
graph.autoresizingMask = [.height, .width]
window.contentView!.addSubview(graph)
window.center()
window.makeKeyAndOrderFront(window)
}
class WindowDelegate: NSObject, NSWindowDelegate {
func windowWillClose(_ notification: Notification) {
NSApplication.shared.terminate(0)
}
}
}
//
// - This is the actual view.
//
import SwiftUI
struct DemoView: View {
@State private var value: Int = 0
let timer = Timer.publish(every: 1, on: .main, in: .common).autoconnect()
func getNewNumber() {
value = .random(in: -500...500)
}
var body: some View {
VStack {
HStack {
Text("Demo view").font(.headline).colorScheme(.dark)
}.padding(10)
List {
Text("hello - \(value)")
}
}.onReceive(timer) { _ in self.getNewNumber() }
}
}
//
// - More AppKit boilerplate.
//
let app = NSApplication.shared
let del = AppDelegate()
app.delegate = del
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment