5
使用accessors似乎是在集合對象上獲取KVO通知的方式,但這似乎不適用於UIViewController的childViewControllers NSArray屬性。我想在向此屬性添加或刪除對象時收到通知。所以我試過這個:UIViewController childViewControllers數組上的KVO
[self addObserver:self forKeyPath:@"childViewControllers" options:NSKeyValueObservingOptionNew context:nil];
-(NSUInteger)countOfChildViewControllers
{
return self.childViewControllers.count;
}
但我不知道如果我做得對,我沒有收到任何通知。我想要什麼?