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()
        }
    }
}
相关推荐
用户0937 分钟前
SwiftUI Charts 函数绘图完全指南
ios·swiftui·swift
YungFan42 分钟前
iOS26适配指南之UIColor
ios·swift
HarderCoder2 小时前
Swift 6.2 新特性 `@concurrent` 完全导读
swift
HarderCoder2 小时前
Swift 里的“橡皮擦”与“标签”——搞懂 existentials 与 primary associated type
swift
用户0917 小时前
TipKit与CloudKit同步完全指南
ios·swift
东坡肘子1 天前
完成 Liquid Glass 的适配了吗?| 肘子的 Swift 周报 #0102
swiftui·swift·apple
HarderCoder2 天前
【Swift Concurrency】深入理解 `async let` 与 `TaskGroup`:并发任务的生命周期与错误传播机制
swift
HarderCoder2 天前
深入理解 Swift Concurrency:从 async/await 到 Actor 与线程池的完整运行机制
swift
HarderCoder2 天前
Swift 结构化并发 6 条铁律 —— 一张图 + 一套模板,让 `async let` / `TaskGroup` / `Task {}` 不再踩坑
swift
大熊猫侯佩3 天前
iOS 26 仅需几行代码让 SwiftUI 7 液态玻璃界面焕发新春
前端·swiftui·apple