最後のウィンドウが閉じられたらSwiftUIアプリケーションを閉じます[重複]

Jan 16 2021

applicationShouldTerminateAfterLastWindowClosedAppDelegate関数と同様に、ユーザーが最後のウィンドウを閉じたときにmacOSSwiftUIアプリケーションを閉じることはできますか?

func applicationShouldTerminateAfterLastWindowClosed(NSApplication) -> Bool

回答

2 DuncanGroenewald Jan 16 2021 at 04:20

私はここで答えを見つけました https://www.hackingwithswift.com/quick-start/swiftui/how-to-add-an-appdelegate-to-a-swiftui-app

AppDelegateのクラスを作成します

import Foundation
import AppKit

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

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