I would like to play a sound in Objective-C with a millisecond start time. I know it is possible this way but "currentTime" only takes seconds:
currentPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil];
currentPlayer.currentTime = 100;
Is there a way to set the start time with milliseconds?