我需要找到MPMovieplayerController正在播放或不播放条件。
检查条件按钮单击事件....!
任何人帮助我们......!
...谢谢!
答案 0 :(得分:44)
MPMovieplayerController具有playbackState属性。在按钮点击事件上,你可以这样做
-(IBAction)btnClicked:(id)sender
{
if(yourMoviePlayerObject.playbackState == MPMoviePlaybackStatePlaying)
NSLog(@"Yes Playing");
else
NSLog(@"Not Playing");
}
答案 1 :(得分:5)