SwiftUI 属性包装器系列 --- @UIApplicationDelegateAdaptor @NSApplicationDelegateAdaptor

@UIApplicationDelegateAdaptor

SwiftUI iOS有了一个全新的生命周期,完全放弃了 UIKit 的应用程序和场景委托,但是有时需要使用UIKit 中UIApplicationDelegate的传统协议:处理推送通知的注册、响应内存警告、检测时间更改等,使用UIApplicationDelegate就可以实现。

如果需要访问SwiftUI iOS中AppDelegate的功能,您应该创建一个继承自NSObject 的类 UIApplicationDelegate 和协议的类,并为其提供功能。

1、实现AppDelegate协议 :创建一个继承NSObject并符合UIApplicationDelegate协议的类

swift 复制代码
class AppDelegate: NSObject, UIApplicationDelegate {
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
        return true
    }
}

2、使用AppDelegate :在main->App-> Scene中使用UIApplicationDelegateAdaptor属性包装器

scss 复制代码
@main
struct YdtApp: App {
    @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

UIApplicationDelegateAdaptor 与 ObservableObject 结合

1、让AppDelegate继承ObservableObject协议

swift 复制代码
class AppDelegate: NSObject, UIApplicationDelegate, ObservableObject {
    @Published var value: String = ""
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
        self.value = "AppDelegate"
        return true
    }
}

2、通过环境委托(EnvironmentObject)属性包装器访问AppDelegate的值

scss 复制代码
struct ContentView: View {
    @EnvironmentObject var appDelegate: AppDelegate  
    var body: some View {
       Text("Value: (appDelegate.value)")  
    }
}

@NSApplicationDelegateAdaptor

在上面使用 @UIApplicationDelegateAdaptor 属性包装器来绑定 UIApplicationDelegate 类。但是UIApplicationDelegate 类在 macOS 上不可以使用,我们应该使用 @NSApplicationDelegateAdaptor属性包装器来实现功能

1、实现AppDelegate协议 NSApplicationDelegate NSWindowDelegate

swift 复制代码
private final class AppDelegate: NSObject, NSApplicationDelegate, NSWindowDelegate {
    var window: NSWindow?
    func applicationDidFinishLaunching(_ notification: Notification) {
        NSApp.delegate = self
        window = NSApplication.shared.windows[0]
        window?.isReleasedWhenClosed = false
        window?.delegate = self
    }

    func applicationShouldHandleReopen(_ sender: NSApplication, hasVisibleWindows flag: Bool) -> Bool {
        window?.makeKeyAndOrderFront(self)
        return true
    }

    @objc func openMainWindow(_ sender: AnyObject?) {
        window?.orderFrontRegardless()
    }
}

注意:

一定要添加 NSApp.delegate = self,否则点击Dock图标无法进入applicationShouldHandleReopen方法,就会创建新的NsWindow

2、使用AppDelegate

scss 复制代码
@main
struct MyApp: App {
    @NSApplicationDelegateAdaptor(AppDelegate.self) var appDelegate    
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}
相关推荐
lancoff1 天前
#3 Creating Shapes in SwiftUI
ios·swiftui
lancoff1 天前
#1 How to use Xcode in SwiftUI project
ios·swiftui
lancoff1 天前
#2 Adding Text in SwiftUI
ios·swiftui
xqlily2 天前
Swift:现代、高效、安全的编程语言(二)
swift
z***y8622 天前
Swift在iOS中的Xcode
ios·xcode·swift
songgeb3 天前
iOS Audio后台模式下能否执行非Audio逻辑
ios·swift
RickeyBoy5 天前
SwiftUI 手势冲突:修复 Navigation 返回手势
swiftui
xiAo_Ju5 天前
SwiftUI快速入门指南-关键字篇
swiftui
xiAo_Ju5 天前
SwiftUI快速入门指南-Modifier篇
swiftui
东坡肘子5 天前
毕业 30 年同学群:一场 AI 引发的“真假难辨”危机 -- 肘子的 Swift 周报 #112
人工智能·swiftui·swift