Skip to content

Instantly share code, notes, and snippets.

@samgreen
Created May 17, 2012 16:30
Show Gist options
  • Save samgreen/2720010 to your computer and use it in GitHub Desktop.
Save samgreen/2720010 to your computer and use it in GitHub Desktop.
- (void)tappedRadioButton:(UIButton *)sender {
Radio *radio = [RadioSingleton sharedRadio];
if (radio.isPlaying) {
[radio stopPlaying];
} else {
[radio startPlaying];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment