平成26年10月7日(火曜日)
Supporting Files
☓☓-Info.plistに以下追加
NSLocationWhenInUseUsageDescription YourAppName would like to use your location.
NSLocationAlwaysUsageDescription YourAppName would like to use your location.
hファイル
//追加 iOS8対応 現在位置表示不具合
@property(nonatomic, retain) CLLocationManager *locationManager;
mファイル
//追加 iOS8対応 現在位置表示不具合
[objc]
//追加 iOS8対応 現在位置表示不具合
locationManager.delegate = self;
self.locationManager = [[CLLocationManager alloc] init];
if(IS_OS_8_OR_LATER) {
[self.locationManager requestWhenInUseAuthorization];
[self.locationManager requestAlwaysAuthorization];
}
[self.locationManager startUpdatingLocation];
//————ここまで————————-
[/objc]