iOS: manejo de ubicación

Podemos localizar fácilmente la ubicación actual del usuario en iOS, siempre que el usuario permita que la aplicación acceda a la información con la ayuda del marco de ubicación central.

Manejo de ubicación: pasos involucrados

Step 1 - Cree una aplicación sencilla basada en View.

Step 2 - Seleccione su archivo de proyecto, luego seleccione objetivos y luego agregue CoreLocation.framework como se muestra a continuación -

Step 3 - Agregue dos etiquetas en ViewController.xib y crea ibOutlets nombrando las etiquetas como latitudeLabel y longitudeLabel respectivamente.

Step 4 - Cree un nuevo archivo seleccionando Archivo → Nuevo → Archivo ... → seleccione Objective C class y haga clic en siguiente.

Step 5 - Nombra la clase como LocationHandler con "sub class of" como NSObject.

Step 6 - Seleccione crear.

Step 7 - actualización LocationHandler.h como sigue -

#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>

@protocol LocationHandlerDelegate <NSObject>

@required
-(void) didUpdateToLocation:(CLLocation*)newLocation 
   fromLocation:(CLLocation*)oldLocation;
@end

@interface LocationHandler : NSObject<CLLocationManagerDelegate> {
   CLLocationManager *locationManager;
}
@property(nonatomic,strong) id<LocationHandlerDelegate> delegate;

+(id)getSharedInstance;
-(void)startUpdating;
-(void) stopUpdating;

@end

Step 8 - actualización LocationHandler.m como sigue -

#import "LocationHandler.h"
static LocationHandler *DefaultManager = nil;

@interface LocationHandler()

-(void)initiate;

@end

@implementation LocationHandler

+(id)getSharedInstance{
   if (!DefaultManager) {
      DefaultManager = [[self allocWithZone:NULL]init];
      [DefaultManager initiate];
   }
   return DefaultManager;
}

-(void)initiate {
   locationManager = [[CLLocationManager alloc]init];
   locationManager.delegate = self;
}

-(void)startUpdating{
   [locationManager startUpdatingLocation];
}

-(void) stopUpdating {
   [locationManager stopUpdatingLocation];
}

-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:
   (CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
   if ([self.delegate respondsToSelector:@selector
   (didUpdateToLocation:fromLocation:)]) {
      [self.delegate didUpdateToLocation:oldLocation 
      fromLocation:newLocation];
   }
}
@end

Step 9 - actualización ViewController.h de la siguiente manera donde hemos implementado el LocationHandler delegate y crea dos ibOutlets -

#import <UIKit/UIKit.h>
#import "LocationHandler.h"

@interface ViewController : UIViewController<LocationHandlerDelegate> {
   IBOutlet UILabel *latitudeLabel;
   IBOutlet UILabel *longitudeLabel;
}
@end

Step 10 - actualización ViewController.m como sigue -

#import "ViewController.h"

@interface ViewController ()
@end

@implementation ViewController

- (void)viewDidLoad {
   [super viewDidLoad];
   [[LocationHandler getSharedInstance]setDelegate:self];
   [[LocationHandler getSharedInstance]startUpdating];
}

- (void)didReceiveMemoryWarning {
   [super didReceiveMemoryWarning];
   // Dispose of any resources that can be recreated.
}

-(void)didUpdateToLocation:(CLLocation *)newLocation 
 fromLocation:(CLLocation *)oldLocation {
   [latitudeLabel setText:[NSString stringWithFormat:
   @"Latitude: %f",newLocation.coordinate.latitude]];
   [longitudeLabel setText:[NSString stringWithFormat:
   @"Longitude: %f",newLocation.coordinate.longitude]];
}
@end

Salida

Cuando ejecutamos la aplicación, obtendremos el siguiente resultado: