如何在本地iOS应用程序中启用iPhone中的声音?

时间:2018-02-08 11:40:13

标签: ios iphone swift

我正在开发一个小应用程序,当我在模拟器中运行应用程序时,我听到了声音,但是当我在iPhone中运行应用程序时,我什么都没听到。如何启用?

在我的ViewDidLoad方法中:

 do {
        musicPlayer = try AVAudioPlayer(contentsOf: URL(string: path)!)
        musicPlayer.prepareToPlay()
        musicPlayer.numberOfLoops = -1
        musicPlayer.play()
    }
    catch let err as NSError {
        print("SOUND ERROR: " + err.debugDescription)
    }

1 个答案:

答案 0 :(得分:1)

可能是您将您的设备静音。尝试翻转侧面的静音开关,使其不显示红线。

More information about the buttons and switches on iDevices