我正在尝试使用swift播放视频,但下面的代码行给出了错误
init(URL :)'已重命名为init(url:)'
let player = AVPlayer(URL: NSURL(fileURLWithPath: path) as URL)
如何修改此行以获取错误。
由于
答案 0 :(得分:-1)
试试这个:
if let player = Bundle.main.url(forResource: "The name of your file", withExtension: "mp4"){
if NSWorkspace.shared().open(player) {
}
}
请务必替换文件名和文件类型。您可能希望将其放在函数中并调用该函数。
我知道这是一种完全不同的做法,但它始终对我有用。我建议尝试一下。