Skip to content

Instantly share code, notes, and snippets.

@jblocksom
Created August 21, 2013 21:56
Show Gist options
  • Save jblocksom/6300752 to your computer and use it in GitHub Desktop.
Save jblocksom/6300752 to your computer and use it in GitHub Desktop.
for (BNRNerd *nerd in self.nerds) {
[self.geocodeQueue addOperationWithBlock:^{
NSOperationQueue *managingQueue = [NSOperationQueue currentQueue];
[geocoder geocodeAddressString:nerd.locationStr completionHandler:^(NSArray *placemarks, NSError *error) {
CLPlacemark *placemark = placemarks[0];
nerd.location = placemark.location;
[self fetchWeatherForNerd:nerd];
[managingQueue setSuspended:NO];
}];
[managingQueue setSuspended:YES];
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment