iOS-ロケーション処理
ユーザーがコアロケーションフレームワークの助けを借りて情報にアクセスすることをユーザーに許可していれば、iOSでユーザーの現在の場所を簡単に見つけることができます。
ロケーション処理–関連する手順
Step 1 −単純なビューベースのアプリケーションを作成します。
Step 2 −以下に示すように、プロジェクトファイルを選択し、次にターゲットを選択してからCoreLocation.frameworkを追加します。
Step 3 −に2つのラベルを追加します ViewController.xib ラベルに名前を付けるibOutletsを作成します latitudeLabel そして longitudeLabel それぞれ。
Step 4 −「ファイル」→「新規」→「ファイル...」→「選択」を選択して、新しいファイルを作成します。 Objective C class 次へをクリックします。
Step 5 −クラスに次の名前を付けます LocationHandler と "sub class of" NSObjectとして。
Step 6 −作成を選択します。
Step 7 −更新 LocationHandler.h 次のように-
#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 −更新 LocationHandler.m 次のように-
#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 −更新 ViewController.h 次のように実装しました LocationHandler delegate 2つのibOutletsを作成します-
#import <UIKit/UIKit.h>
#import "LocationHandler.h"
@interface ViewController : UIViewController<LocationHandlerDelegate> {
IBOutlet UILabel *latitudeLabel;
IBOutlet UILabel *longitudeLabel;
}
@end
Step 10 −更新 ViewController.m 次のように-
#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
出力
アプリケーションを実行すると、次の出力が得られます-