I want to move annotation pin smoothly on mapView, i want to apply KVO on mapview . I also applied it by that method of implementation :-
if (nil == ObservableKeys) {
ObservableKeys = [[NSSet alloc] initWithObjects:
u.uLat,
u.uLon,
nil];
}
if (nil != self) {
// Add observers for each of the keyPaths we care about
for (NSString *keyPath in ObservableKeys)
[self addObserver:self
forKeyPath:keyPath
options:(NSKeyValueObservingOptionOld |
NSKeyValueObservingOptionNew)
context:nil];
}
if (nil == ObservableKeys) {
ObservableKeys = [[NSSet alloc] initWithObjects:
u.uLat,
u.uLon,
nil];
[self willChangeValueForKey:@"coordinate"];
self.lastLocation = newLocation;
u.uLat=[NSString stringWithFormat:@"%f",newLocation.coordinate.latitude];
u.uLon=[NSString stringWithFormat:@"%f",newLocation.coordinate.longitude];
flag1=@"first";
[self didChangeValueForKey:@"coordinate"];
here u.ulat is latitude u.ulon is longitude. Please tell me how to implement kvo on mapview....
