iOS 上的代码执行,使用背景音频

发布于 2024-11-29 12:55:49 字数 375 浏览 0 评论 0 原文

首先,我必须说,我对在应用商店中发布感兴趣,但同时我对越狱我的手机感兴趣。

我想尝试在后台执行代码,因此我想编写一个简单的应用程序来定期记录我的电池电量和位置,假设每 10 分钟记录一次。我不想安排本地通知,所以据我了解,这只能(?)去 'Pastebot 方式'。

有人可以给我更多相关信息吗?如果我想测试它,我是否必须安排计时器并正确配置我的音频会话?或者,换句话说,我不明白我的“后台执行代码”应该放在哪里。任何帮助/信息都非常感谢!

First of all, I have to say that I am not interested in publishing in the appstore, but at the same time I am not interested in jailbreaking my phone.

I want to experiment with code execution in the background, so I'd like to write a simple application that periodically logs my battery level and my position, let's say every 10 minutes. I don't want to schedule local notifications, so to my understanding, this would only be possible (?) going the 'Pastebot way'.

Can someone please give me more information about that? If I want to test it, will I have to schedule a timer and properly configure my audio session? Or, in other words, I don't understand where my "background executing code" should be placed. Any help/information highly appreciated!

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

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

发布评论

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

评论(1

空城之時有危險 2024-12-06 12:55:49

如果您想使用位置服务,则可以在应用程序 info.plist 中设置应用程序后台模式(UIBackgroundModes 并向其添加 location 项)。并在您的应用程序中开始监视位置变化。就是这样,您的应用程序不会被挂起(直到系统因其他进程的内存而处于繁重的位置)。

If you want to use location services, than you can set your application background mode in app info.plist (UIBackgroundModes and add to it location item). And in your application start monitoring location change. Thats it, your application won't be suspended (till system will be in heavy position with memory for other process).

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