Skip to content

Instantly share code, notes, and snippets.

@jfahrenkrug
Created September 8, 2009 14:14
Show Gist options
  • Save jfahrenkrug/182948 to your computer and use it in GitHub Desktop.
Save jfahrenkrug/182948 to your computer and use it in GitHub Desktop.
- (void)controlTextDidEndEditing:(id)sender {
if ([sender object] == searchField) {
[self searchLocation];
}
}
- (void)searchLocation {
if ([searchField stringValue]) {
[mapController moveMapToAddress:[searchField stringValue]];
[locationDetailController setNameIfEmpty:[searchField stringValue]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment