You have to trigger the call with something other than didUpdateLocation
, because the frequency of that call is up to the user of the device, and not your code. If you only need to call the web service if there has been a significant change in location, you can do as follows.
- Save the location passed to
didUpdateLocation
.
- Use a repeating
NSTimer
on a two minute interval.
- Every time the timer fires, check the current location versus the location when the last request was made. If it exceeds the threshold, make the request.
- If the request is made, save the location for the next iteration.
An alternative algorithm:
- Make the web request. Remember the time.
- When
didUpdateLocation
fires, check the last time you made the web request. If it was more than 2 minutes ago, make the request, else ignore the update.
You might need a bit of each, depending on your exact needs. If the cadence for the request is most important, start with the first. If the only important bit is that you don't call more frequently than every 2 minutes, but longer intervals are perfectly OK, go with the second.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…