UIView サブクラスがあり、これには contentView があり、パブリック ヘッダーでそのように宣言されています。
@property (nonatomic,retain)UIVivew* contentView;
contentView のフレームが変更されるたびに KVO 通知を取得しようとしていますが、observeValueForKeyPath メソッドが UIView サブクラスで呼び出されることはありません。
@implementation MyView
@synthesize contentView = _contentView;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
[self.contentView addObserver:self
forKeyPath:@"frame"
options:(NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld)
context:nil];
}
return self;
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if ([keyPath isEqualToString:@"frame"]) {
CGRect newContentFrame = [[change objectForKey:NSKeyValueChangeNewKey] CGRectValue];
CGRect selfNewFrame = self.frame;
selfNewFrame.size = CGSizeMake(newContentFrame.size.width + 10, newContentFrame.size.height + 10);
self.frame = selfNewFrame;
}
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
KVOが発砲しない理由についてのアイデアはありますか?