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

“ RegionMonitoringPlugin.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


“ RegionMonitoringPlugin.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;

    }
}

最佳答案

如果我正确看到它,则不应autorelease locationManager也不应该regionMonitor

dealloc release处添加locationManager方法。停止位置监视后,应释放regionMonitor

关于ios - 为CLLocationManager创建插件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10532549/

10-10 14:09