移除KVO观察者时APP崩溃

时间:2016-06-12 12:47:08

标签: ios objective-c key-value-observing

我在控制器中有一个滚动视图。滚动视图有一个子视图。子视图同时是滚动视图的观察者。当subview的willMoveToSuperview:被调用时,我删除了观察者。但是当控制器被解雇时,app崩溃了。以下是示例代码:

@interface MyView : UIView

@property (nonatomic, weak) UIScrollView *scrollView;

@end

@implementation MyView

- (instancetype)initWithFrame:(CGRect)frame scrollView:(UIScrollView *)scrollView {
    self = [super initWithFrame:frame];
    if (self) {
        self.scrollView = scrollView;
        [scrollView addObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew context:nil];
    }
    return self;
}

- (void)willMoveToSuperview:(UIView *)newSuperview {
    [super willMoveToSuperview:newSuperview];

    if (!newSuperview) {
        [self.scrollView removeObserver:self forKeyPath:@"contentOffset"];
        self.scrollView = nil;
    }
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)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

当我在self.scrollView中打印willMoveToSuperview时,它显示为空。当我将MyView中的属性scrollView更改为unsafe_unretained时,应用程序不会崩溃。 所以我很困惑。为什么弱scrollView不起作用。当scrollView不安全时,我是否正在阅读悬空指针?那种情况有更好的解决方案吗?

1 个答案:

答案 0 :(得分:1)

此处的问题是,willMoveToSuperview被称为scrollView weak指针已经nil(已取消分配)。 但它认为scrollView没有完全解除分配(内存未发布),这就是为什么当你使用unsafe_unretained引用删除观察者时它会以某种方式工作。但它是一个悬垂的指针引用,你不应该依赖它。