当我输入以下代码并在模拟器上运行并将位置设置为“City Run”时,它不会记录任何内容。我不知道我做错了什么。
·H
F2
的.m
#import <CoreLocation/CoreLocation.h>
@interface ViewController : UIViewController <UITextFieldDelegate,CLLocationManagerDelegate> {
CLLocationManager *locMgr;
}
@property (nonatomic, retain) CLLocationManager *locMgr;
@property NSInteger speed;
你看到我遗失的任何东西吗?
答案 0 :(得分:0)
尝试将NSLocationWhenInUseUsageDescription键添加到info.plist
答案 1 :(得分:0)
您需要使用以下任一方式请求授权使用位置服务:
[self.locMgr requestAlwaysAuthorization];
或
[self.locMgr requestWhenInUseAuthorization];