应用程序确实进入后台功能

发布于 2024-10-23 18:53:34 字数 121 浏览 1 评论 0原文

嘿,我的firstViewController中有一个相当低的间隔计时器,我想在应用程序进入后台时终止它,但是我应该如何从该函数所在的应用程序AppDelegate文件访问它。我知道这是一个非常愚蠢的问题,但我将不胜感激。谢谢!

Hey I got a pretty low interval timer in my firstViewController which I would like to terminate when the app enters background, but how am I supposed to access it from my Applications AppDelegate file where the function is located. I know this is extremely dumb question, but I would appreciate help. Thanks!

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

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

发布评论

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

评论(1

时光与爱终年不遇 2024-10-30 18:53:34

在你的firstViewController中,你会监听 UIApplicationDidEnterBackgroundNotification

在firstViewController的init方法中:

- (void)addObserver:(id)notificationObserver selector:(SEL)notificationSelector name:(NSString *)notificationName object:(id)notificationSender

In your firstViewController, you would listen for UIApplicationDidEnterBackgroundNotification.

In the firstViewController init method:

- (void)addObserver:(id)notificationObserver selector:(SEL)notificationSelector name:(NSString *)notificationName object:(id)notificationSender
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文