如何观察阵列控制器的计数?
到目前为止我尝试过:
//...
self.array = [[NSMutableArray alloc] init];
self.arrayController = [[NSArrayController alloc] initWithContent:self.array];
[self.arrayController addObserver:self
forKeyPath:@"arrangedObjects"
options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld
context:@"self.array"];
[self.array addObject:@"anoop"];
[self.array addObject:@"amit"];
NSLog(@"%ld", [self.arrayController.content count] );
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context {
if( object == self.arrayController) {
...
}
}
我的实际要求是观察数组计数,但由于Array不符合KVO,我不能这样做。另外,我不想将Array子类化,只需向其添加一个数组属性,如其他答案所示。然后我想到了观察阵列控制器。
任何线索都将受到高度赞赏。
答案 0 :(得分:3)
为了观察arrangedObjects
的计数,您必须在密钥路径中指定集合运算符。您要使用的是@count
。
所以不要使用:
arrangedObjects
你应该使用
arrangedObjects.@count