blob: ec5135ab4d84859c2f07962534daf2be13ca5b3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <Cocoa/Cocoa.h>
@implementation MyDocument
- (void) locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
[UIAlertView showError:error
withTitle:NSLocalizedString(@"Your location cannot be determined",
@"The location of the user cannot be guessed")
message:NSLocalizedString(@"You can try again by pressing the refresh button",
@"Recovery suggestion when the location cannot be found")];
}
@end
|