iOS - Gestione della posizione

Possiamo facilmente individuare la posizione corrente dell'utente in iOS, a condizione che l'utente consenta all'applicazione di accedere alle informazioni con l'aiuto del framework di localizzazione principale.

Gestione della posizione - Passaggi coinvolti

Step 1 - Creare una semplice applicazione basata sulla visualizzazione.

Step 2 - Seleziona il tuo file di progetto, quindi seleziona le destinazioni e quindi aggiungi CoreLocation.framework come mostrato di seguito -

Step 3 - Aggiungi due etichette in ViewController.xib e creare ibOutlet denominando le etichette come latitudeLabel e longitudeLabel rispettivamente.

Step 4 - Crea un nuovo file selezionando File → Nuovo → File ... → seleziona Objective C class e fare clic su Avanti.

Step 5 - Assegna alla classe il nome LocationHandler con "sub class of" come NSObject.

Step 6 - Seleziona crea.

Step 7 - Aggiorna LocationHandler.h come segue -

#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 - Aggiorna LocationHandler.m come segue -

#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 - Aggiorna ViewController.h come segue dove abbiamo implementato il LocationHandler delegate e crea due ibOutlet -

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

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

Step 10 - Aggiorna ViewController.m come segue -

#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

Produzione

Quando eseguiamo l'applicazione, otterremo il seguente output: