Is it possible to run the background process on the iPhone using private APIs?

I do not plan to send the application to the store, this would be for limited distribution. I thought that if I could use a private API to execute the background process, then I could join the iphone iphone corporate program and distribute the application that runs in the background in my company. I assume that the expansion of the question will be, if I am an enterprise developer, there is a way to achieve background processing without jailbreaking.

+3
source share
1 answer

Probably against SDK rules, even for enterprise deployment.

Perhaps locking will work in - (void)applicationWillTerminate:(UIApplication *)app .

(there is a smart solution here: How to implement the Daemon process for a background task in iphone sdk 3.0? )

+2
source

Source: https://habr.com/ru/post/923111/


All Articles