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()
        }
    }
}
相关推荐
一丝晨光2 天前
继承、Lambda、Objective-C和Swift
开发语言·macos·ios·objective-c·swift·继承·lambda
KWMax3 天前
RxSwift系列(二)操作符
ios·swift·rxswift
Mamong3 天前
Swift并发笔记
开发语言·ios·swift
小溪彼岸3 天前
【iOS小组件】小组件尺寸及类型适配
swiftui·swift
Adam.com4 天前
#Swift :回调地狱 的解决 —— 通过 task/await 来替代 nested mutiple trailing closure 来进行 回调的解耦
开发语言·swift
Anakki4 天前
【Swift官方文档】7.Swift集合类型
运维·服务器·swift
KeithTsui4 天前
集合论(ZFC)之 联合公理(Axiom of Union)注解
开发语言·其他·算法·binder·swift
東三城4 天前
【ios】---swift开发从入门到放弃
ios·swift
文件夹__iOS8 天前
[SwiftUI 开发] @dynamicCallable 与 callAsFunction:将类型实例作为函数调用
ios·swiftui·swift