我正在使用 NSSound,我可以让声音正确播放/暂停,但由于某种原因,我无法让 currentTime 方法返回零以外的任何内容。
这是我遇到问题的代码:
NSSound* sound = [[NSSound alloc] initWithContentsOfFile:@"path_to_sound.mp3" byReference:NO];
[sound play];
sleep(1);
NSLog(@"Current time: %f", [sound currentTime]);
声音播放但 NSLog 始终返回零。有任何想法吗?