[ios] Added @TODO to insert GPS Warning dialog when gps is disabled

This commit is contained in:
Alex Zolotarev 2011-04-16 17:19:57 +02:00 committed by Alex Zolotarev
parent af29f27ef6
commit d6ad24dad9

View file

@ -82,6 +82,12 @@
didFailWithError: (NSError *) error
{
[self.delegate OnLocationError: [error localizedDescription]];
if ([error code] == kCLErrorDenied)
{
// @TODO display some warning to the user about disabled location services,
// probably allow him to enable them by going to the settings
}
}
@end