gpt4 book ai didi

ios - watch 套件 : 'sharedApplication' is unavailable: not available on iOS (App Extension) - Use view controller based solutions where appropriate instead

转载 作者:可可西里 更新时间:2023-11-01 03:31:40 29 4
gpt4 key购买 nike

我在 watch 套件扩展的构建阶段添加了 Manager.m(iOS 类)。但是,我得到了以下错误

'sharedApplication' is unavailable: not available on iOS (App Extension) - Use view controller based solutions where appropriate instead

这是我的 Manager.m 中导致问题的行。

 AppDelegate *appDelegate =
(AppDelegate *)[[UIApplication sharedApplication] delegate];

我想在 Manager.m 中使用代码,但像这样的代码行会导致问题,并且不允许我运行 watch 应用程序。有没有解决的办法?我不想为了适应 watchkit 而重写整个类。

最佳答案

在 watch 套件扩展的目标build设置中定义/添加宏(例如 WATCH_KIT_EXTENSION_TARGET),并使用它来选择性地构建代码。例如。由于 sharedApplication 在 iOS 扩展上不可用,因此您可以像下面这样编写代码

#ifndef WATCH_KIT_EXTENSION_TARGET
AppDelegate *appDelegate =
(AppDelegate *)[[UIApplication sharedApplication] delegate];
#endif

关于ios - watch 套件 : 'sharedApplication' is unavailable: not available on iOS (App Extension) - Use view controller based solutions where appropriate instead,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29288217/

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