在我的 viewController 中使用来自 AppDelegate 的 BOOL

发布于 2025-01-08 06:18:54 字数 330 浏览 1 评论 0原文

我已经陷入这个困境有一段时间了...我对编码不太有经验,但我正在尝试...

在我的应用程序中,我在 AppDelegate.h 中使用 BOOL backFromBack :

BOOL backFromBack;

然后我将其设置为当应用程序进入后台时,在 .m 文件中显示 yes。

现在我想

if (backFromBack)

在我的 viewController 中使用,但是如何将此 BOOL 从委托传递到 viewController?

任何帮助都很棒!

I'm stuck in this for some time now... I'm not so experienced with coding but I'm trying...

In my app I use the BOOL backFromBack like this in the AppDelegate.h:

BOOL backFromBack;

Then I set it to yes in the .m file when application enters background.

Now I want to use an

if (backFromBack)

In my viewController but how can I pass this BOOL from the delegate to the viewController?

Any help is great!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哽咽笑 2025-01-15 06:18:54

在你的视图控制器中,

#import AppDelegate.h

你可以使用

[(AppDelegate*)[[UIApplication sharedApplication] delegate] backFromBack]

来访问你的变量,假设该变量可以从外部访问(即合成的)

In your viewcontroller,

#import AppDelegate.h

You can then use

[(AppDelegate*)[[UIApplication sharedApplication] delegate] backFromBack]

to access your variable, assuming that the variable is accessible from the outside (i.e. synthesized)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文