Storyboardから設置したUIViewでAVPlayerの動画を再生
[Swift2]Storyboardから設置したUIViewでAVPlayerの動画を再生する方法
http://bick.xyz/archives/586
を参考にUIViewでAVPlayerを再生したいです。
Storyboardに貼り付けたUIviewから、AVPlayerViewのインスタンスにして
@IBOutlet weak var videoPlayerView: AVPlayerView!
に接続すると以下のエラーが発生します。(この行で)
'weak' cannot be applied to non-class type '<<<\error type>>'
Use of undeclared type 'AVPlayerView'
これはどのような対応をすれば解決するのでしょうか?
- XCode 7.1
- DeploymentTarget: 9.1
です。