AVPlayerViewController 问题

AVPlayerViewController issues

所以我正在尝试从该项目源代码编辑一些源代码...https://github.com/ariiyu/VideoPlayerSample

所以,当我只是尝试替换视频路径和文件时,它崩溃了,我不确定为什么??

这是 ViewController 源代码之一...

import UIKit
import AVFoundation
import AVKit

class SecondViewController: AVPlayerViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

// I try to replace the string with my movie file here and crashes
        let moviePath = NSBundle.mainBundle().pathForResource("hogevideo", ofType: "mp4")!
        let url = NSURL(fileURLWithPath: moviePath)


        let playerItem = AVPlayerItem(URL: url)


        player = AVPlayer(playerItem: playerItem)


        player.play()
    }

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

}

在 iOS 8 中,文件系统结构发生了变化,这就是您崩溃的原因使用此功能在 iOS 8

中获取视频路径
let urls = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)

let moviePath = urls[0].URLByAppendingPathComponent("hogevideo.mp4")

println("And append your video file name to urls: \(moviePath)")