gpt4 book ai didi

ios - Instruments Leaks 显示不存在的方法调用

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:57 30 4
gpt4 key购买 nike

要么我根本不了解 Instruments Leaks 工具,要么我快疯了。我已经在我的 iPhone 应用程序上运行了该工具,它显示了一些漏洞。如果我理解正确,对于其中一个泄漏,它说它是由我的方法“writeHeading”分配的 NSDate 对象。分配对象的方法是:“dateWithTimeIntervalSinceReferenceDate:”。但是,我的 writeHeading 方法不使用该方法。事实上,我的整个应用程序中的任何地方都没有使用该方法。

有人知道这里会发生什么吗?

这里是writeHeading的代码:

- (void) writeHeading:(CLHeading *)heading
{
if (self.inFlight) {
[log writeHeading:heading];
} else {
IGC_Event *event = [[IGC_Event alloc] init];
event.code = 'K';
event.timestamp = heading.timestamp;
event.heading = heading;
[self addEvent:event];
[event release];
}
}

这是 Instruments 的截图: enter image description here

这里是 IGC_Event 的定义(根据多个响应者的要求):

@interface IGC_Event : NSObject {
int code;
CLLocation *location;
CLHeading *heading;
NSString *other;
NSDate *timestamp;
}

@property int code;
@property (nonatomic, retain) CLLocation *location;
@property (nonatomic, retain) CLHeading *heading;
@property (nonatomic, retain) NSString *other;
@property (nonatomic, retain) NSDate *timestamp;

@end


@implementation IGC_Event

@synthesize code;
@synthesize location;
@synthesize heading;
@synthesize other;
@synthesize timestamp;

@end

最佳答案

假设没有 ARC,您需要确保 IGC_Event 对象释放它们的时间戳和其他可能已保留或复制的引用。

所以在 IGC_Event 中你需要像这样的 dealloc:

- (void) dealloc {

[timestamp release];
[location release];
[heading release];
[other release];


[super dealloc];
}

泄漏只是告诉您时间戳对象是在哪里创建的,而不是您应该在哪里释放它。

当然,这可能不是您唯一泄漏的地方,但那里有 4 个潜在泄漏。

关于ios - Instruments Leaks 显示不存在的方法调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8106247/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com