How to play an mp3 file, on repeat, on OS X 10.5 or higher?
Please reply with a code snippet. Thanks.
How to play an mp3 file, on repeat, on OS X 10.5 or higher?
Please reply with a code snippet. Thanks.
NSSound *sound = [[NSSound alloc] initWithContentsOfURL:url byReference:YES];
[sound setLoops:YES];
[sound play];
// Later, when finished with sound
[sound release];