Skip to content

Instantly share code, notes, and snippets.

@davidcann
Created December 4, 2009 19:21
Show Gist options
  • Save davidcann/249270 to your computer and use it in GitHub Desktop.
Save davidcann/249270 to your computer and use it in GitHub Desktop.
AVAudioPlayer *audioPlayer;
...
audioPlayer = [[AVAudioPlayer alloc] initWithData:[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"DCMainCarouselMusic" ofType:@"m4a"]] error:nil];
audioPlayer.numberOfLoops = 0;
[audioPlayer prepareToPlay];
[audioPlayer play];
...
[audioPlayer stop];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment