Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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....

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.