1

我正在为 unity3D 创建一个 iOS 插件。下面是代码。当使用 EXC_BAD_EXCESS 调用 [regionMonitor startMonitor] 函数时,它是如何爆炸的。根据互联网帖子,这似乎是一个内存管理错误。谁能看到这里有什么问题。谢谢。

“区域监控插件.h”

 #import <Foundation/Foundation.h>
 #import <CoreLocation/CoreLocation.h>


@interface RegionMonitoringPlugin : NSObject <CLLocationManagerDelegate>
{
    CLLocationManager *locationManager; 
}

-(void)leavingHomeNotify;
-(void)startMonitor:(float)latitude longitude:(float)longitude radius:(float)raduis;

@end

“区域监控插件.mm”

#import "RegionMonitoringPlugin.h"

@implementation RegionMonitoringPlugin

- (id) init
{
    if (self = [super init])
   {
      locationManager = [[[CLLocationManager alloc] init] autorelease];
      locationManager.delegate = self;
      [locationManager setDistanceFilter:kCLDistanceFilterNone];
      [locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
   }
return self;
}

-(void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region
{
    [self leavingHomeNotify];
}

-(void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region
{
    [self leavingHomeNotify];
}

 - (void)locationManager:(CLLocationManager *)manager monitoringDidFailForRegion:(CLRegion *)regionwithError:(NSError *)error
{
    NSLog(@"Location error %@, %@", error, @"Fill in the reason here");
}

-(void)leavingHomeNotify
{
UILocalNotification *note = [[UILocalNotification alloc] init];
note.alertBody= @"Region Left";
[[UIApplication sharedApplication] presentLocalNotificationNow:note];
[note release];
 }

 -(void)startMonitor:(float)latitude longitude:(float)longitude radius:(float)radius
 {
  CLLocationCoordinate2D home;
  home.latitude = latitude;
  home.longitude = longitude;
  CLRegion* region = [[CLRegion alloc] initCircularRegionWithCenter:home radius:radius identifier:@"home"];
  [locationManager startMonitoringForRegion:region desiredAccuracy:kCLLocationAccuracyBest];
  [region release];    
 }

@end

extern "C" {

    static RegionMonitoringPlugin *regionMonitor;

    // Unity callable function to start region monitoring
    BOOL _startRegionMonitoring(float m_latitude,float m_longitude, float m_radius)
    {
        if (![CLLocationManager regionMonitoringAvailable] || ![CLLocationManager regionMonitoringEnabled] )
            return NO;
        if (regionMonitor == nil){
            regionMonitor = [[[RegionMonitoringPlugin alloc]init ] autorelease];
        }
        [regionMonitor startMonitor:m_latitude longitude:m_longitude radius:m_radius];
        return YES;

    }
}
4

1 回答 1

1

如果我没看错,你不应该也不autorelease locationManager应该regionMonitor

添加一个dealloc方法,release locationManager而不是。停止位置监控后,regionMonitor应该会释放 。

于 2012-05-10T14:12:34.097 回答