当我移动到下一页时,是否可以暂停mpmovieplayer并从使用mpmovieplayercontroller返回上一页时暂停的同一点继续? 请帮我解决。 提前谢谢。
我试过了foll代码: - 设置mpmovieplayer
var moviePlayer = MPMoviePlayerController()
moviePlayer.view.frame = IBviewVideo!.frame
moviePlayer.movieSourceType = MPMovieSourceType.Streaming
moviePlayer.contentURL = NSURL(string: "URL")
movieplayer.play()
条件是在viewwillappear中暂停时间: -
if(isPaused){
let currentTime = Helper.getIntPREF(CURRENT_PLAYBACK_TIME)
println("playbackTime \(currentTime)")
moviePlayer!.initialPlaybackTime = NSTimeInterval (currentTime!)
isPaused = false
moviePlayer!.play()
}
我可以从之前暂停的时间开始播放视频吗?