0

在我的习惯UITableViewCell中,我正在做这样的事情。

-(void)checkHeight
{
    if (self.frame.size.height < self.expandedHeight) {
        self.lblReasontitle.hidden=YES;
    }
    else
    {
        self.lblReasontitle.hidden=NO;
    }
}
-(void)watchFrameChanges
{
    if (!isObserving) {

        [[NSNotificationCenter defaultCenter] addObserver:self forKeyPath:@"frame" options: (NSKeyValueObservingOptionNew |NSKeyValueObservingOptionInitial) context:nil];
        isObserving=true;
    }
}
-(void)ignoreFrameChanges
{
    if (isObserving) {
        [[NSNotificationCenter defaultCenter] removeObserver:self forKeyPath:@"frame"];
    }
}
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context
{
    if ([keyPath isEqualToString:@"frame"]) {
        [self checkHeight];
    }
}

但我得到了这个例外。

由于未捕获的异常 NSUnknownKeyException 导致应用程序终止,原因:[addObserver:forKeyPath:@"frame" options:5 context:0x0] 被发送到“frame”属性不符合 KVC 的对象。

我不知道那个异常是什么,我该如何解决。请帮我。谢谢

4

2 回答 2

1

从上面的代码我想你想做一对一的交流。如果是这样,请选择 KVO 而不是 NSNotification。

像这样替换代码,

-(void)checkHeight
{
    if (self.frame.size.height < self.expandedHeight) {
        self.lblReasontitle.hidden=YES;
    }
    else
    {
        self.lblReasontitle.hidden=NO;
    }
}
-(void)watchFrameChanges
{
    if (!isObserving) {

        [self addObserver:self forKeyPath:@"frame" options: (NSKeyValueObservingOptionNew |NSKeyValueObservingOptionInitial) context:nil];
        isObserving=true;
    }
}
-(void)ignoreFrameChanges
{
    if (isObserving) {
        [self removeObserver:self forKeyPath:@"frame"];
    }
}
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context
{
    if ([keyPath isEqualToString:@"frame"]) {
       [self checkHeight];
    }
}
于 2016-09-29T13:22:55.323 回答
0

默认情况下,UIKit 元素不兼容 KVO - 直到文档化。因此,你得到了这个例外。尝试注册一些与框架相关的值,它应该可以工作。

于 2016-09-29T11:47:13.090 回答