以编程方式阻止应用程序在后台iOS中运行

以编程方式阻止应用程序在后台iOS中运行

本文介绍了以编程方式阻止应用程序在后台iOS中运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个将在后台运行的应用程序,但有一种情况我不希望这种情况发生,我能以编程方式实现吗?

I have an app that will run in the background but there is one case where I do not want that to happen, can I achieve this programmatically?

我知道我可以通过值但是在运行时怎么样?

I know I can opt out by changing this plist value but what about at run time?

推荐答案

你不能使用exit(0)b / c apple不允许您在用户不知情的情况下关闭应用程序。

You can't use exit(0) b/c apple does not allow you to close the app without user knowing it.

来自Technical Q& A QA1561 。

From Technical Q&A QA1561 How do I programmatically quit my iPhone application?.

这篇关于以编程方式阻止应用程序在后台iOS中运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 12:28