适用于越狱手机的后台 iPhone 应用程序

发布于 2024-09-24 17:19:31 字数 221 浏览 2 评论 0原文

我为越狱手机开发应用程序,我需要我的应用程序在后台运行,并且能够在后台运行时照常运行。 在 iOS3.0 上,我只是在 applicationWillTerminate 处阻塞线程,仅此而已。但4.0中的快速应用程序切换方法似乎禁用了applicationWillTerminate,所以我不能再使用它了。 我尝试通过调用来覆盖 applicationSuspend ,但这似乎也不起作用。 你们知道如何做到这一点吗? 谢谢

I develop apps for jailbroken phones, and I need my app to be backgrounded and to be able to keep running as usual when backgrounded.
On iOS3.0, I would just block the thread at applicationWillTerminate, and that'd be it. But it seems that the fast app switching method in 4.0 is disabling applicationWillTerminate, so I can't use that anymore.
I've tried overriding applicationSuspend by calling it, but that doesn't appear to work either.
Do you guys have any idea how to do this?
Thanks

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

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

发布评论

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

评论(1

嘿看小鸭子会跑 2024-10-01 17:19:31

也许你需要拦截触发Apple设置的准后台进程的新方法。

-(void)applicationWillResignActive

-(void)applicationDidEnterBackground

-(void)applicationWillEnterForeground

-(void)applicationDidBecomeActive

Maybe you need to intercept the new methods triggering the quasi-backgrounding process set by Apple.

-(void)applicationWillResignActive

-(void)applicationDidEnterBackground

-(void)applicatonWillEnterForeground

-(void)applicationDidBecomeActive

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