当我的UIImageView.image属性发生变化时,有没有办法得到通知?

时间:2012-05-09 00:41:05

标签: iphone objective-c ios xcode cocoa-touch

有没有办法在UIImageView.image属性上设置观察者,所以我可以收到有关属性何时更改的通知?也许与NSNotification?我该怎么做呢?

我有大量的UIImageViews,所以我需要知道发生了哪一次更改。

我该怎么做?感谢。

1 个答案:

答案 0 :(得分:21)

这称为键值观察。可以观察到任何符合键值编码的对象,这包括具有属性的对象。阅读this programming guide关于KVO如何工作以及如何使用它的内容。这是一个简短的例子(免责声明:它可能不起作用)

- (id) init
{
    self = [super init];
    if (!self) return nil;

    // imageView is a UIImageView
    [imageView addObserver:self
                forKeyPath:@"image"
                   options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld
                   context:NULL];

    return self;
}

- (void) observeValueForKeyPath:(NSString *)path ofObject:(id) object change:(NSDictionary *) change context:(void *)context
{
    // this method is used for all observations, so you need to make sure
    // you are responding to the right one.
    if (object == imageView && [path isEqualToString:@"image"])
    {
        UIImage *newImage = [change objectForKey:NSKeyValueChangeNewKey];
        UIImage *oldImage = [change objectForKey:NSKeyValueChangeOldKey];

        // oldImage is the image *before* the property changed
        // newImage is the image *after* the property changed
    }
}