3

如几个教程中所述,我正在实施 CLLocationManager 权利。

一切正常,直到 LocationManager 收到第二次更新。然后发生内存泄漏。

Instruments 告诉我,泄露的对象是 NSCFTimer、GeneralBlock-16 和 NSCFSet

有任何想法吗?

谢谢你的帮助

[编辑]

在反复启动和停止 locationManager 之后,更新似乎来得更快。这让我觉得 CLLocationManager 每次发生位置更新时都会初始化一个新计时器......非常奇怪......

而且 - 所以你不需要阅读我的评论 - 应用程序会在一段时间后崩溃

[编辑]

好的 - 我不明白这里有一些代码......

我为 locationManager 使用了一个单独的类,如下所述:http: //www.vellios.com/2010/08/16/core-location-gps-tutorial/

位置管理器.h

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

@protocol locationManagerDelegate 

@required
- (void)locationUpdate:(CLLocation *)location;
- (void)locationError:(NSError *)error;
@end

@interface locationManager : NSObject <CLLocationManagerDelegate>{
    CLLocationManager *myLocationManager;
    id delegate;
    CLLocation *bestEffortAtLocation;
    BOOL    outOfRange;
}

@property (nonatomic, retain) CLLocationManager *myLocationManager;  
@property (nonatomic, retain) CLLocation *bestEffortAtLocation;
@property (nonatomic, assign) id  delegate;
@property (nonatomic, assign) BOOL  outOfRange;

@end

位置管理器.m

#import "locationManager.h"

@implementation locationManager

@synthesize myLocationManager;
@synthesize delegate;
@synthesize bestEffortAtLocation;
@synthesize outOfRange;

- (id) init {
    self = [super init];
    NSLog(@"initializing CLLocationManager");
    if (self != nil) {
        outOfRange = NO;

        self.myLocationManager = [[[CLLocationManager alloc] init] autorelease];
        self.myLocationManager.delegate = self;

        self.myLocationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters;

        [self performSelector:@selector(stopUpdatingLocation:) withObject:@"Timed Out" afterDelay:100.0];
    }else{
        NSLog(@"Location Manager could not be initialized");
    }
    return self;
}

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{

    if(outOfRange == NO){

        [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(stopUpdatingLocation:) object:nil];

        NSTimeInterval locationAge = -[newLocation.timestamp timeIntervalSinceNow];
        if (locationAge > 5.0) return;
        // test that the horizontal accuracy does not indicate an invalid measurement
        if (newLocation.horizontalAccuracy < 0) return;

        [self.delegate locationUpdate:newLocation];
    }else{
        [self.myLocationManager stopUpdatingLocation];
    }
}

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{
    NSLog(@"error!!!!");
    [self.myLocationManager stopUpdatingLocation];
    [self.delegate locationError:error];
}

- (void)dealloc {
    [myLocationManager release];
    [bestEffortAtLocation release];
    [super dealloc];
}

@end

然后,在我调用的主类中:

mainFile.h(摘录)

#import "locationManager.h"

@interface mainFile : UIViewController  <locationManagerDelegate , UIAlertViewDelegate>{
    locationManager *locationController;
    CLLocation      *myLocation;
}

@end

mainFile.m(摘录)

#import "locationManager.h"

@implementation mainFile

@synthesize locationController;
@synthesize myLocation;

- (void)locationError:(NSError *)error{
// Do alert-Stuff
}

- (void)locationUpdate:(CLLocation *)location {
// Do location-Stuff
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    locationController = [[[locationManager alloc] init] autorelease];

    locationController.delegate = self;
    [locationController.myLocationManager startUpdatingLocation];
}

- (void)dealloc {
    self.locationController = nil;
    [locationController release];
}

@end

这让我有点发疯:)

4

3 回答 3

0

啊,一个长期死的问题,我爱他们。

locationController 是 iVar,而不是属性,因此当您在 viewDidLoad 中创建它时,将其分配给 _locationController 不会获得所有权。

你已经自动释放了对象,所以下次在事件循环中,自动释放池被耗尽并被释放。

您可以通过使其成为保留属性(适合您的 locationManager = nil )或摆脱自动释放并在 dealloc 中使用显式 [locationManager release] 来修复它。

于 2013-10-22T15:56:10.323 回答
0

我的建议是不要沉迷于 iOS 本身产生的一次性内存泄漏。它在许多地方都这样做,并且泄漏都是无害的。

于 2010-08-21T01:03:41.010 回答
-1

尝试做一个Build and Analyze. 我通常会以这种方式发现内存泄漏和其他非语法错误。

于 2010-08-21T01:30:13.253 回答