Lan*_*opp 1 cocoa key-value-observing
我很难用键值观察手动触发属性更新.这是一个用来说明我的问题的人为例子:
Bar.h
#import <Foundation/Foundation.h>
@interface Bar : NSObject
{
NSString *test;
}
@property (nonatomic, retain) NSString *test;
-(void) updateTest1;
-(void) updateTest2;
@end
Run Code Online (Sandbox Code Playgroud)
Bar.m
#import "Bar.h"
@implementation Bar
@synthesize test;
-(id) init
{
if (self = [super init])
{
self.test = @"initial";
}
return self;
}
-(void) updateTest1
{
self.test = @"updating 1";
}
-(void) updateTest2
{
NSString *updateString = @"updating 2";
[updateString retain];
test = updateString;
[self didChangeValueForKey:@"test"];
}
@end
Run Code Online (Sandbox Code Playgroud)
foo.h中
#import <Foundation/Foundation.h>
@interface Foo : NSObject
@end
Run Code Online (Sandbox Code Playgroud)
Foo.m
#import "Foo.h"
@implementation Foo
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
NSLog(@"something changed!");
}
@end
Run Code Online (Sandbox Code Playgroud)
的main.m
#import <Foundation/Foundation.h>
#import "Foo.h"
#import "Bar.h"
int main (int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
Bar *bar = [Bar new];
Foo *foo = [Foo new];
[bar addObserver:foo forKeyPath:@"test" options:0 context:nil];
[bar updateTest1];
[bar updateTest2];
[pool drain];
return 0;
}
Run Code Online (Sandbox Code Playgroud)
该计划返回:
2011-08-09 03:57:52.630 Temp[5159:707] something changed!
Program ended with exit code: 0
Run Code Online (Sandbox Code Playgroud)
为什么didChangeValueForKey:不触发观察者的observeValueForKeyPath:ofObject:change:context:事件?这种方法不能像我想的那样工作吗?
它没有触发通知,因为您忘记了相应的通知
[self willChangeValueForKey:@"test"];
Run Code Online (Sandbox Code Playgroud)
必须始终配对 didChangeValueForKey: