iOS - Gestion de l'emplacement
Nous pouvons facilement localiser l'emplacement actuel de l'utilisateur dans iOS, à condition que l'utilisateur autorise l'application à accéder aux informations à l'aide du cadre de localisation principal.
Gestion de l'emplacement - étapes impliquées
Step 1 - Créez une application simple basée sur la vue.
Step 2 - Sélectionnez votre fichier projet, puis sélectionnez les cibles puis ajoutez CoreLocation.framework comme indiqué ci-dessous -
Step 3 - Ajoutez deux étiquettes dans ViewController.xib et créez des ibOutlets en nommant les étiquettes comme latitudeLabel et longitudeLabel respectivement.
Step 4 - Créez un nouveau fichier en sélectionnant Fichier → Nouveau → Fichier ... → sélectionnez Objective C class et cliquez sur suivant.
Step 5 - Nommez la classe comme LocationHandler avec "sub class of" comme NSObject.
Step 6 - Sélectionnez créer.
Step 7 - Mettre à jour LocationHandler.h comme suit -
#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 - Mettre à jour LocationHandler.m comme suit -
#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 - Mettre à jour ViewController.h comme suit où nous avons mis en œuvre le LocationHandler delegate et créez deux ibOutlets -
#import <UIKit/UIKit.h>
#import "LocationHandler.h"
@interface ViewController : UIViewController<LocationHandlerDelegate> {
IBOutlet UILabel *latitudeLabel;
IBOutlet UILabel *longitudeLabel;
}
@end
Step 10 - Mettre à jour ViewController.m comme suit -
#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
Production
Lorsque nous exécutons l'application, nous obtenons la sortie suivante -