如何检查电影是否正在播放? (如果可能的话)

时间:2011-05-29 06:26:54

标签: iphone objective-c ios ipad

有没有办法通过查询MPMoviePlayerController(而不是通过注册回调)来检查当前是否正在播放电影?我在android中寻找类似于mediaPlayer.isPlaying()的东西。我查看了文档但找不到方法,虽然我可能会错过一些东西......

目前我正在注册回调,但我想在自己维护状态之前知道是否有这样的方法。

1 个答案:

答案 0 :(得分:2)

你试过playbackState吗?根据Apple的文档,它应该返回您需要的信息: http://developer.apple.com/library/ios/documentation/mediaplayer/reference/MPMoviePlayerController_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006953-CH3-SW40

它返回以下状态之一:

enum {
   MPMoviePlaybackStateStopped,
   MPMoviePlaybackStatePlaying,
   MPMoviePlaybackStatePaused,
   MPMoviePlaybackStateInterrupted,
   MPMoviePlaybackStateSeekingForward,
   MPMoviePlaybackStateSeekingBackward
};
typedef NSInteger MPMoviePlaybackState;