1

This application is location awareness app. It uses GPS details so it can be run in background. But is it possible to send the collected data to a remote server while the app is in background? or maybe when the screen is locked?

Rukshan
  • 7,902
  • 6
  • 43
  • 61
  • 1
    possible duplicate of [iOS background application network access](http://stackoverflow.com/questions/9613357/ios-background-application-network-access) – Nate Oct 05 '12 at 09:58

1 Answers1

2

For Required background modes add App registers for location updates in plist, this will make application work in background and you can send location updates to server. Here consider that your location services are not continuously on, else it will drain complete battery of device. Hope this help you..

P.J
  • 6,547
  • 9
  • 44
  • 74