Skip to content

Instantly share code, notes, and snippets.

@saiday
Created February 4, 2014 18:03
Show Gist options
  • Save saiday/8809005 to your computer and use it in GitHub Desktop.
Save saiday/8809005 to your computer and use it in GitHub Desktop.
IBActions
- (IBAction)PreviewU2:(id)sender
{
NSString *itunesAPIU2 = @"https://itunes.apple.com/lookup?amgArtistId=5723&entity=song&limit=5&sort=recent";
[self getPreviews:itunesAPIU2];
}
- (IBAction)previewJackJohnson:(id)sender
{
NSString *itunesAPIJackJohnson = @"https://itunes.apple.com/lookup?amgArtistId=468749&entity=song&limit=5&sort=recent";
[self getPreviews:itunesAPIJackJohnson];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment