I need to find my current location with CoreLocation, I tried so many times but all i get is 0`s.. (0.000.00.000).
Here is my code:
Edit: Updated my code, it work's now.
imports:
#import <CoreLocation/CoreLocation.h>
.h File
IBOutlet CLLocationManager *locationManager;
IBOutlet UILabel *latLabel;
IBOutlet UILabel *longLabel;
.m File
latLabel.text = [NSString stringWithFormat:@"%f", locationManager.location.coordinate.latitude];
longLabel.text = [NSString stringWithFormat:@"%f", locationManager.location.coordinate.longitude];
//put in: **application didFinishLaunchingWithOptions** or viewDidLoad
locationManager = [[CLLocationManager alloc] init];
locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
[locationManager startUpdatingLocation];
Happy Coding ! :)