Кнопка для видео - PullRequest
0 голосов
/ 07 мая 2020

Моя кнопка для этого перестала показывать мое видео, может ли кто-нибудь мне помочь

импорт UIKit импорт AVKit

класс ViewController: UIViewController {

@IBAction func Town(_ sender: Any) {


if let path = Bundle.main.path(forResource: "grey", ofType: "mov") {

        let video = AVPlayer(url: URL(fileURLWithPath: path))
        let videoPlayer = AVPlayerViewController()

        videoPlayer.player = video

        self.present(videoPlayer, animated: true, completion: {
            video.play()
        })

}
    func viewDidLoad() {
    super.viewDidLoad()

}

}

}

...