我明白这可能是一个重复的问题,但是当我尝试时,我没有得到更改的属性。我遵循了几个KVO + Array SO的答案。但是我仍然缺少一些因为它在我的情况下不起作用。
User.h:
@interface User : NSObject
...
@property(nonatomic, assign) double latitude;
@property(nonatomic, assign) double longitude;
...
@end
SingletonClass.h:
@interface SingletonClass : NSObject
....
@property(nonatomic, readonly) NSMutableArray *remoteUsers;//Stores user objects
...
@end
SingletonClass.m
@implementation SingletonClass
for (int i = 0; i < _remoteUsers.count; i++) {
index = [NSIndexSet indexSetWithIndex:i];
User *rmtUser = _remoteUsers[i];
if ([rmtUser.roomJid isEqualToString:occupantJID.description]) {
[self willChange:NSKeyValueChangeReplacement valuesAtIndexes:index forKey:@"remoteUsers"];
rmtUser.latitude = user.latitude;
rmtUser.longitude = user.longitude;
[self didChange:NSKeyValueChangeReplacement valuesAtIndexes:index forKey:@"remoteUsers"];
isUserInList = YES;
break;
}
}
MainViewClass.h:我想在这里更新地图上的用户位置。
MainViewClass.m:
@implementation MainViewClass
....
[SingletonClass addObserver:self forKeyPath:@"remoteUsers" options:NSKeyValueObservingOptionNew context:nil];
....
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if([keyPath isEqualToString:@"remoteUsers"]) {
User *remoteUser = ((SingletonClass *)object).remoteUsers[0];
NSLog(@"THE LATITUDE OBSERVED IS %f", remoteUser.latitude);
NSLog(@"THE LONGITUDE OBSERVED IS %f", remoteUser.longitude);
}
}
这里我得到的是完整的用户对象,而不是更改/更新的属性。我在任何地方做错了吗?
答案 0 :(得分:0)
如果您将代码更改为:
[self willChangeValueForKey:@"remoteUsers"];
rmtUser.latitude = user.latitude;
rmtUser.longitude = user.longitude;
[self didChangeValueForKey:@"remoteUsers"];
答案 1 :(得分:0)
@ A-Live提到它按预期工作。真实代码中有一个类型,不在帖子中。