当应用程序进入后台时如何运行 NSThread

发布于 2024-11-25 03:43:33 字数 359 浏览 1 评论 0原文

当应用程序处于后台时,我需要控制设备的音量,因此我使用以下代码

 - (void)applicationDidEnterBackground:(UIApplication *)application
 {
back=1;

NSLog(@"Enter in the back");
float v=1.0f;

[NSThread detachNewThreadSelector:@selector(changeCounter) toTarget:self withObject:_viewController];

}

changeCounter 有无限循环。但是当我运行代码并将应用程序发送到后台时。循环仅运行一次?

I need to control the volume of device when app is in background so for this i use following code

 - (void)applicationDidEnterBackground:(UIApplication *)application
 {
back=1;

NSLog(@"Enter in the back");
float v=1.0f;

[NSThread detachNewThreadSelector:@selector(changeCounter) toTarget:self withObject:_viewController];

}

changeCounter has infinite loop.But when i run the code and send the app to back.loop runs only for one time?

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

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

发布评论

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

评论(1

永言不败 2024-12-02 03:43:33

You need to request a background task from the UIApplication using beginBackgroundTaskWithExpirationHandler. There are examples in the Application Programming Guide (See the Completing a Finite-Length Task in the Background section).

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