演示WKInterfaceController后播放视频

时间:2016-01-04 07:10:20

标签: swift2 xcode7 watchkit apple-watch watch-os-2

我创建了一个测试应用,其中我有动态数量的视频 我使用API​​

呈现多个接口控制器
presentControllerWithNames(controllers, contexts: contexts);

根据watchApp数组的计数,我在controllers上有多个页面。

每个接口控制器都有一个视频,

我已将WKInterfaceMovie对象与

绑定
@IBOutlet var movie: WKInterfaceMovie!

并在awakeWithContext()我写了如下电影,

override func awakeWithContext(context: AnyObject?) {
    super.awakeWithContext(context)

    //videoName will be depends on model object, I have passed
    let url = NSBundle.mainBundle().URLForResource("videoName",
            withExtension: "mp4")!


    self.movie.setMovieURL(url)
}

在点击观看应用中WKInterfaceMovie对象的播放按钮后,视频无法播放。

0 个答案:

没有答案