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

前端 未结 1 1950
长情又很酷
长情又很酷 2021-01-20 03:10

I am not planning to send the application to the store, it would be for a limited distribution. I was thinking that if I could use the private API to do background process,

相关标签:
1条回答
  • 2021-01-20 03:56

    Probably against the SDK rules, even for enterprise deployment.

    But blocking in - (void)applicationWillTerminate:(UIApplication *)app will probably work.

    (there's a clever solution here: How to implement Daemon process for background task in iphone sdk 3.0?)

    0 讨论(0)
提交回复
热议问题