我创建了一个测试应用,其中我有动态数量的视频 我使用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
对象的播放按钮后,视频无法播放。