在我的 viewController 中使用来自 AppDelegate 的 BOOL
我已经陷入这个困境有一段时间了...我对编码不太有经验,但我正在尝试...
在我的应用程序中,我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的视图控制器中,
你可以使用
来访问你的变量,假设该变量可以从外部访问(即合成的)
In your viewcontroller,
You can then use
to access your variable, assuming that the variable is accessible from the outside (i.e. synthesized)