gpt4 book ai didi

objective-c - WatchKit 中 UIApplication.sharedApplication().delegate 的等价物是什么?

转载 作者:可可西里 更新时间:2023-11-01 00:59:53 26 4
gpt4 key购买 nike

在 iOS 应用程序中,您可以通过以下方式获取对共享应用程序委托(delegate)的引用:

swift :
let delegate = UIApplication.sharedApplication().delegate as! AppDelegate

Objective-C :
AppDelegate *delegate = [[UIApplication sharedApplication] delegate];

在 WatchKit2 App Extension 中有一个类似的 App Delegate,我想在 View Controller 中获取对它的引用以访问应用程序中的共享资源,例如核心数据堆栈的 ManagedObjectModel 和 PersistentStoreCoordinator,我有在 App Delegate 中初始化。

但是,UIApplication.sharedApplication().delegate as! AppDelegate 报错,

Use of unresolved identifier 'UIApplication'

如何在 WatchKit2 应用扩展中访问应用委托(delegate)?

最佳答案

WatchOS 2 中的 WKExtension 类自动为每个扩展提供一个单独的扩展对象,以管理在所有应用程序界面 Controller 之间共享的行为。 Apple Documentation注意到您“使用扩展对象来执行应用程序级任务,例如打开 URL 和获取应用程序的根接口(interface) Controller 。”

就像在 iOS 中一样,在您的 WatchKit App Extension 中,您提供了自己的委托(delegate)对象,即您尝试引用的对象。这会自动分配给 WKExtension 对象的委托(delegate)属性,并且可以使用与用于访问 iOS 中的 UIApplication 委托(delegate)的方法类似的方法进行访问:

swift :
let delegate = WKExtension.sharedExtension().delegate as!扩展委托(delegate)

Objective-C :
WKExtensionDelegate *delegate = [[WKExtension sharedExtension] 委托(delegate)];

Apple documentation of the WKExtension Class提供有关功能的更多信息。


更深入:
WatchKit App Extensions 并非在所有情况下都必须提供 WKExtensionDelegate。作为WKExtensionDelegate documentation from Apple注意,“您提供委托(delegate)对象并使用它来管理扩展中的生命周期事件。如果您的扩展支持可操作的通知或切换行为,则需要提供委托(delegate)对象。”

您将知道您的 WatchKit App Extension 是否有一个委托(delegate)对象,如果有,那么在您的 App Extension 生命周期中,您将没有必要尝试访问不存在的 App Delegate。因此,虽然 WKExtension.sharedExtension().delegate 是可选的(WatchKit App Extensions 可能存在于未设置委托(delegate)的地方),但使用 as! 是安全的假设开发人员知道他们已经在他们的 App Extension 中设置了 WKExtensionDelegate,则在上面的示例中将 return 转换为非可选的。

关于objective-c - WatchKit 中 UIApplication.sharedApplication().delegate 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36270738/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com