我在 Controller 中有一个 ScrollView 。 ScrollView 有一个 subview 。 subview 同时是 ScrollView 的观察者。当 subview 的 willMoveToSuperview: 调用时,我删除了观察者。但是当 Controller 关闭时,应用程序崩溃了。以下是示例代码:
@interface MyView : UIView
@property (nonatomic, weak) UIScrollView *scrollView;
@end
@implementation MyView
- (instancetype)initWithFrameCGRect)frame scrollViewUIScrollView *)scrollView {
self = [super initWithFrame:frame];
if (self) {
self.scrollView = scrollView;
[scrollView addObserver:self forKeyPath"contentOffset" options:NSKeyValueObservingOptionNew context:nil];
}
return self;
}
- (void)willMoveToSuperviewUIView *)newSuperview {
[super willMoveToSuperview:newSuperview];
if (!newSuperview) {
[self.scrollView removeObserver:self forKeyPath"contentOffset"];
self.scrollView = nil;
}
}
- (void)observeValueForKeyPathNSString *)keyPath ofObjectid)object changeNSDictionary<NSString *,id> *)change contextvoid *)context {
}
@end
@interface SecondViewController ()
@end
@implementation SecondViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
scrollView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:scrollView];
MyView *view = [[MyView alloc] initWithFrame:CGRectMake(100, 200, 100, 100) scrollView:scrollView];
[scrollView addSubview:view];
}
@end
当我在 willMoveToSuperview 中打印 self.scrollView 时,它显示为 null。当我将 MyView 中的 scrollView 属性更改为 unsafe_unretained 时,应用程序不会崩溃。
所以我很困惑。为什么不弱的 scrollView 工作。当 scrollView 为 unsafe_unretained 时,我是否正在读取悬空指针?这种情况有更好的解决方案吗?
Best Answer-推荐答案 strong>
这里的问题是当 willMoveToSuperview 被称为 scrollView weak 指针已经是 nil (deallocated )。
但它认为 scrollView 没有完全释放(内存未释放),这就是为什么当你使用 unsafe_unretained 引用来删除观察者时它会以某种方式工作。但它是一个悬空指针引用,你不应该依赖它。
关于ios - 移除 KVO 观察者时 APP 崩溃,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37774413/
|