Fermer l'application SwiftUI lorsque la dernière fenêtre est fermée [dupliquer]

Jan 16 2021

Est-il possible de fermer une application macOS SwiftUI lorsque la dernière fenêtre est fermée par l'utilisateur, similaire à la applicationShouldTerminateAfterLastWindowClosedfonction AppDelegate.

func applicationShouldTerminateAfterLastWindowClosed(NSApplication) -> Bool

Réponses

2 DuncanGroenewald Jan 16 2021 at 04:20

J'ai trouvé la réponse ici https://www.hackingwithswift.com/quick-start/swiftui/how-to-add-an-appdelegate-to-a-swiftui-app

Créer une classe pour AppDelegate

import Foundation
import AppKit

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

Ajouter un wrapper de propriété à votre classe d'application SwiftUI

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)
    
        }
    }
}