Reputation: 13
I'm developing an app for iOS7 that is always receiving data from an UDP socket. It does not fit any of the Apple's background modes so i suppose i can only have the service running for 10minutes.
Is it possible to, after the 10min, send an alert to the user that allows the service to run for more 10min or so?
Are there any other tricks to allow the service to run for more time?
Upvotes: 1
Views: 262
Reputation: 2369
Apps can works in background, there are some Background modes which you can find more information here but take care because if you use one of these modes for continuing working in background and you don´t use its mode, your app will be rejected by Apple.
For example if you set your app with backgroundmode voiceip and you don´t use voiceip, your app will be rejected by Apple
Upvotes: 1