下面的代码在 android 上运行良好,并且可以播放声音....但是在 ios 模拟器上却没有。我已经将我的声音文件添加到 Xcode 项目中,并且没有发现任何错误......当我单步执行代码时,它this.sound.play()
成功运行并调用了回调函数......但是你没有听到任何声音。
import Sound from 'react-native-sound';
sound = new Sound('sound.mp3');
try {
this.sound.setCategory('Playback');
this.sound.play(() => {
this.sound.stop();
this.sound.release();
});
} catch (e) {
console.log('cannot play the sound file', e);
}