the file that I need the users information in already has a -flipsideViewControllerDelegate-, so Is there a way that I can get the users location coordinates without using the CLLocationManagerDelegate thing?
the file that I need the users information in already has a -flipsideViewControllerDelegate-, so
Share
You could use
-[CLLocationManager location]to get the most recently returned location, but I’d imagine that you’d still have to have the location manager updating the location.However, by using the
locationproperty, you’re switching from an interrupt-driven mechanism (an asynchronous callback) to a polling mechanism. The former is almost always much more efficient for getting continuous updates.