我正面临一个奇怪的泄漏。以下Car
类的对象永远不会被释放。
但是,如果我去掉实例变量_unsafe_self
,而是在方法中声明(并像以前一样分配)变量init
,泄漏就会消失。
这可能是什么原因造成的?我认为__weak
总是很弱,无论它是否是实例变量。
@interface Car : NSObject
@end
@implementation Car {
id _obs;
__weak Car *_unsafe_self;
}
- (id)init {
if (!(self = [super init]))
return nil;
_unsafe_self = self;
_obs = [[NSNotificationCenter defaultCenter]
addObserverForName:NSWindowDidMoveNotification
object:nil
queue:[NSOperationQueue mainQueue]
usingBlock:^(NSNotification *note) {
NSLog(@"hello %@", _unsafe_self);
}];
return self;
}
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:_obs];
}
@end