Feche o aplicativo SwiftUI quando a última janela for fechada [duplicar]

Jan 16 2021

É possível fechar um aplicativo macOS SwiftUI quando a última janela é fechada pelo usuário, semelhante à applicationShouldTerminateAfterLastWindowClosedfunção AppDelegate.

func applicationShouldTerminateAfterLastWindowClosed(NSApplication) -> Bool

Respostas

2 DuncanGroenewald Jan 16 2021 at 04:20

Eu encontrei a resposta aqui https://www.hackingwithswift.com/quick-start/swiftui/how-to-add-an-appdelegate-to-a-swiftui-app

Crie uma classe para o AppDelegate

import Foundation
import AppKit

class AppDelegate: NSObject, NSApplicationDelegate {
    func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
        return true
    }
}

Adicione um wrapper de propriedade à sua classe SwiftUI App

import SwiftUI

@main
struct SwiftUIApp: App {
    @NSApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
    
    var body: some Scene {
        WindowGroup {
            ContentView()
                .frame(minWidth: 300, idealWidth: 300, maxWidth: .infinity, minHeight: 300, idealHeight: 300, maxHeight: .infinity)
    
        }
    }
}