import
import
@ interface RootViewController: UIViewController
{
CLLocationManager * locationManager;
} @property (неатомный, сохранить) CLLocationManager * locationManager;
@ end
Реализация нашего контроллера представления выглядит следующим образом:
import "RootViewController.h"
#import
@ реализация RootViewController
@ synthesize locationManager;
- (void) locationManager: (CLLocationManager *) didUpdateToLocation: (CLLocation *) newLocation {
NSLog (@ "Latitude =% f", newLocation.coordinate.latitude);
NSLog (@ "Longitude =% f", newLocation.coordinate.longitude);