0
How to make my IOS application using objective-c send my location in the background without wasting battery, and not fail and not fail by Apple, someone would have an idea how to do this?
0
How to make my IOS application using objective-c send my location in the background without wasting battery, and not fail and not fail by Apple, someone would have an idea how to do this?
Browser other questions tagged ios objective-c gps
You are not signed in. Login or sign up in order to post.
Without wasting battery is rare, because you need to spend battery only to get the correct coordinates. In the background you say is with the app closed, or with it open but in the background? If closed is not possible, and if done, Apple will reject!
– Lucas Eduardo
Thanks for the reply Lucas Eduardo, in background would be in the background I will open the application and but I will not close there, the issue of battery was to develop a solution that does not spend too much the user battery understood.
– Bruno Richart
If this is the case, I recommend these readings: http://stackoverflow.com/questions/19042894/periodic-ios-background-location-updates and http://mobileoop.com/groundback-location-update-programming-forios-7;) Remembering that the battery will be spent according to the accuracy you choose, time of each update and other factors
– Lucas Eduardo