Skip to content

Instantly share code, notes, and snippets.

@cyco
Created April 25, 2014 17:48
Show Gist options
  • Save cyco/11297699 to your computer and use it in GitHub Desktop.
Save cyco/11297699 to your computer and use it in GitHub Desktop.
- (void)downloadCoverArt:(id)sender
{
[[self selectedGames] makeObjectsPerformSelector:@selector(requestCoverDownload)];
[self reloadDataIndexes:[self selectedIndexes]];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.05 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[self downloadCoverArt:sender];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment