私は NSSound を使用しており、サウンドを正しく再生/一時停止できますが、何らかの理由で currentTime メソッドがゼロ以外を返すことができません。
私が問題を抱えているコードは次のとおりです。
NSSound* sound = [[NSSound alloc] initWithContentsOfFile:@"path_to_sound.mp3" byReference:NO];
[sound play];
sleep(1);
NSLog(@"Current time: %f", [sound currentTime]);
サウンドは再生されますが、NSLog は常にゼロを返します。何か案は?