gpt4 book ai didi

ios - 在 iOS 中播放多首歌曲

转载 作者:行者123 更新时间:2023-11-28 06:27:09 24 4
gpt4 key购买 nike

我为 iOS 编写了这段代码来播放一首歌曲,但是我不确定如何编写这段代码来播放多首歌曲。

这是一首歌的代码行:

import UIKit
import AVFoundation

class ViewController: UIViewController {
var player:AVAudioPlayer = AVAudioPlayer()

@IBAction func play(_ sender: AnyObject)
{
player.play()
}

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

do
{
let audioPath = Bundle.main.path(forResource: "Ken", ofType: "mp3")
try player = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: audioPath!) as URL)
}
catch
{
//ERROR
}
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

最佳答案

实际上,您只需使用 AVAudioPlayer 的两个实例即可播放它。如果您想同时播放每个声音文件,则需要它自己的 AVAudioPlayer。

关于ios - 在 iOS 中播放多首歌曲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41531974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com