I am trying to write a latitude value and longitude value to a plist inside a LocationManager method.
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
NSString *latitude = [[NSString alloc] initWithFormat:@"%g", newLocation.coordinate.latitude];
NSString *longitude = [[NSString alloc] initWithFormat:@"%g", newLocation.coordinate.longitude];
NSString *filePath = [[NSBundle mainBundle] pathForResource:
@"PlayerData" ofType:@"plist"];
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];
[plistDict setValue:latitude forKey:@"MyLatitude"];
[plistDict setValue:longitude forKey:@"MyLongitude"];
[plistDict writeToFile:filePath atomically: YES];
myLatitude.text = latitude;
myLongitude.text = longitude;
NSLog(@"Location: %@", [newLocation description]);
}
For some reason it never writes the value to the plist, but prints out the values correctly.
NSLog(@"Lat i s:%@ Lon is :%@", latitude, longitude);
What would cause this not to update/write to the plist?
Thanks
writeToFile:atomically:returns a bool if it's successful. Store that bool and use it to know if it worked. – EmilioPelaez Jul 4 '11 at 16:17