In my application ,in initial lunch i have to used cllocationmanager class to find current location ([locationManager startUpdatingLocation];) using this method.After find a location i
fired this method ([locationManager stopUpdatingLocation];).
Now a user will move from one place to other place.It will automatically detects newlocation or we need to fire ([locationManager startUpdatingLocation];) this method again.
Help me?
Note:
If i will call ([locationManager startUpdatingLocation];) method again it will give a newlocation or old location.How to differentiate it ?
Whenever you call [locationManager startUpdatingLocation];, this will give you the current location. So, when you call this function again it will give you new location.