I'm working on an app that monitors significant location changes in the background. I've been reading all the answers (well, I think all!) about ios4 and the application lifecycle, but what I can't figure out is whether or not I can do any network access when the app is woken up in the background as a result of a significant location change.

The app currently does network access via TCP sockets. The socket is shutdown when the app is suspended.

Can I re-connect the socket, receive some data, send the new location and then shutdown the socket all while still in the background as a result of receiving the location change event? It's hard to test while stationary in the office! We can assume that the network activity takes less than 10 seconds to complete. Also assume the app isn't registered as a voip app (could/should it be? ...)

Any ideas?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Yep. You can do your network processing based on significant change events.

When you get woken up into the background state on significant change (from terminated or suspended state), you can make your http request. If you find your app is being terminated before you finish your HTTP request, you can ask for additional background processing time via the beginBackgroundTaskWithExpirationHandler: method on UIApplication.

I spent a fair bit of time on short train trips to test this out. :)

link|improve this answer
Thanks RBT, that sounds conclusive. – Roger Mar 24 '11 at 9:02
It may be possible from a technical standpoint. But does Apple allow for it? Has your app (using this technique) actually been approved? – Toastor Jul 26 '11 at 9:02
@Toastor Yep. In fact it was an Apple employee on the forums who suggested it too me. – RedBlueThing Jul 26 '11 at 12:29
+1 for you, then :) – Toastor Jul 26 '11 at 12:30
@Toaster Heh, Cheers :) – RedBlueThing Jul 26 '11 at 12:34
feedback

I'd just like to confirm RedBlueThing's answer with some detail.

I now use the following to accomplish this. bgTask is declared as UIBackgroundTaskIdentifier

bgTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:
           ^{
                 [[UIApplication sharedApplication] endBackgroundTask:bgTask];
            }];

// Now call methods doing network activity
// ...
// WHEN I KNOW THE LAST ACTION HAS COMPLETED USE THIS BLOCK OF CODE

if (bgTask != UIBackgroundTaskInvalid)
{
      [[UIApplication sharedApplication] endBackgroundTask:bgTask];
      bgTask = UIBackgroundTaskInvalid;
}

Hope this helps out since I see quite a few people looking at the question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.