这是我用来设置音乐的代码
var backGroundMusic = AVAudioPlayer() var bgMusicUrl:NSURL = NSBundle.mainBundle().URLForResource("BackGround",withExtension: "wav") backGroundMusic = AVAudioPlayer(contentsOfURL:bgMusicUrl,error: nil) backGroundMusic.numberOfLoops = (-1) backGroundMusic.preparetoPlay() backGroundMusic.play()你试过这个吗?
backGroundMusic.volume = 0.5
音量从0.0到1.0(全音量). https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVAudioPlayerClassReference/index.html
总结以上是内存溢出为你收集整理的如何降低swift音乐的音量?全部内容,希望文章能够帮你解决如何降低swift音乐的音量?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)