我想收到的座標用戶當前的位置,我進入了這個代碼:用戶當前位置
-(void)update{
locationManager = [[CLLocationManager alloc] init];
locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.delegate = self;
mapView.showsUserLocation = YES;
[locationManager startUpdatingLocation];
}
在iOS模擬器,該代碼崩潰,我的設備是不是有時它崩潰了整個應用程序....你能幫助我發生什麼事嗎?
你是什麼意思的「它是失敗」在模擬器上? 「你的整個應用程序失敗」是什麼意思?你能描述你遇到的崩潰/錯誤嗎? – Rob
該模擬器不能提供整個gps expereince。它具有提供位置的基本功能。例如。在這裏:http://stackoverflow.com/questions/12641817/ios-simulator-and-gps –
請更清楚一點不工作。你期待什麼,沒有發生什麼? – Daniel