1
我試圖播放按鈕clic上的視頻(它應該以全屏方式啓動視頻)在Swift中使用GVR SDK進行IO操作。GVR SDK(谷歌VR播放器)ios開始視頻按鈕點擊
我一直在關注本教程,使玩家在swift中工作;
https://www.raywenderlich.com/136692/introduction-google-cardboard-ios
但它idpslay視圖控制器上的視頻。
當前在我的視圖控制器上我有一個按鈕,在按下時,它應該開始全屏播放視頻。
爲此,我試圖創建下列行動:
@IBAction func videoButton(_ sender: UIButton) {
var url = URL(string: "https://myvideo.mp4")
var videoController = GVRVideoView(nibName: "GVRVideoView", bundle: nil, url: url)
videoController.vrMode(true)
if !self.presentedView.isBeingDismissed() {
self.present(videoController, animated: true, completion: { _ in })
}
}
,但沒有成功....沒有任何人有任何想法,這可怎麼實現???
或者我是在一個很好的軌道?
非常感謝!