定位时闪退!~~求助!求助!

我们有个应用的外包给私人做的,结果测试出现部分手机定位服务开启就会闪退。初步确定可能是定位是出现错误。但是对方可以确定代码没有问题,我们现在很茫然,其他定位的应用在闪退手机是可以定位这些的,但是就这个应用一开启定位服务就会闪退。我把定位代码发出来 大家帮帮忙找下原因!这里先谢谢大家了!~
(void)initMap:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
    
    
    // 这是classid,在下面的PluginResult进行数据的返回时,将会用到它
    self.callbackID = [arguments pop];

    NSLog(@"进入普通定位态");

    self.locationManager = [[[CLLocationManager alloc] init] autorelease];
    self.locationGeocoder = [[CLGeocoder alloc] init];
    if ([CLLocationManager locationServicesEnabled]) {
        NSLog( @"Starting CLLocationManager" );
        self.locationManager.delegate = self;
        self.locationManager.distanceFilter = 1;
        locationManager.desiredAccuracy = kCLLocationAccuracyBest; //最佳精确度
        [self.locationManager startUpdatingLocation];
        
       
    } else {
        NSLog( @"Cannot Starting CLLocationManager" );

    }

你可能感兴趣的:(定位时闪退!~~求助!求助!)