欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

macOS SwiftUI 如何使用AppDelegate

程序员文章站 2024-03-24 13:21:34
...

macOS SwiftUI 如何使用AppDelegate

实战代码

import SwiftUI
class AppDelegate:NSObject,NSApplicationDelegate{
    func applicationDidFinishLaunching(_ aNotification: Notification) {
        print("finished")
    }
}

@main
struct macos_camera_demoApp: App {
    @NSApplicationDelegateAdaptor(AppDelegate.self) private var appDelegate
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}
相关标签: SwiftUI macOS开发