我想在我的代码中删除此观察者:
[self.noteLabel addObserver:self forKeyPath:@"contentSize" options:(NSKeyValueObservingOptionNew) context:NULL];
删除它的好习惯是什么? 感谢
编辑
我想删除这个观察者,因为我需要删除它的parentView。实际上它因为这个观察者而崩溃了。用观察者删除子视图的好习惯是什么?谢谢你的帮助。
答案 0 :(得分:1)
每当您想要删除观察者时,您只需使用removeObserver
和正确的参数。
[self.noteLabel removeObserver:self forKeyPath:@"contentSize"];
答案 1 :(得分:0)
这并不完全安全。你可以使用这样的代码:
#pragma mark - KVO
static void *_myContextPointer = &_myContextPointer;
- (void)enableObserver:(BOOL)enable onObject:(id)object selector:(SEL)selector {
NSString *selectorKeyPath = NSStringFromSelector(selector);
if (enable) {
[object addObserver:self forKeyPath:selectorKeyPath options:0 context:&_myContextPointer];
} else {
@try {
[object removeObserver:self forKeyPath:selectorKeyPath context:&_myContextPointer];
} @catch (NSException *__unused exception) {}
}
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if (context != _myContextPointer) {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
return;
}
[self observerActionForKeyPath:keyPath ofObject:object change:change];
}
和ofc这样的代码来处理你的观察者:
- (void)observerActionForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change {
NSString *contentSizeKeyPath = NSStringFromSelector(@selector(contentSize));
if ([keyPath isEqualToString:contentSizeKeyPath]) {
// do something
}
}
然后你就这样称呼它:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self enableObserver:YES onObject:self selector:@selector(contentSize)];
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[self enableObserver:NO onObject:self selector:@selector(contentSize)];
}
通过使用此类代码,您的应用程序不会崩溃,因为您连续几次删除观察者。此外,您不能在您的属性名称中输入拼写错误,并且在您重构代码时它会动态更改。所有KVO都在一个地方。
您可以在NSHipster页面上阅读有关安全KVO的更多信息。
答案 2 :(得分:0)
通常,您开始在-init
中观察某个关键路径,并在-dealloc
中停止这样做。
我会在-dealloc
中取消注册。