Skip to content

Instantly share code, notes, and snippets.

@littlebobert
Last active March 22, 2017 20:31
Show Gist options
  • Save littlebobert/b18c2da658e76dabd764399223de599b to your computer and use it in GitHub Desktop.
Save littlebobert/b18c2da658e76dabd764399223de599b to your computer and use it in GitHub Desktop.
AMPTalkService *talkService = [AMPTalkService new];
[talkService addTalkRadioWithCotentID:showID
contentType:AMPRadioServiceContentTypeShow
addToFavorites:NO
sessionAndProfileInfo:sessionAndProfileInfo
completionHandler:^(CustomTalkRadio *radio, NSError *error) {
if (error) {
[self handleDidFailWithError:error];
return;
}
[self handleDidCreateRadio:radio];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment