2014-05-24 53 views
0

以下是在按鈕按下時打開視頻的代碼。一切都很好,但我想爲我的視頻播放器添加音量控制。是否有MPMoviePlayerController的默認功能,我可以啓用,還是必須使用對象庫中的滑塊,拖放它,並根據滑塊值調整音量?如何在我的MPMoviePlayerController實例中添加音量控件

NSString *url = [[NSBundle mainBundle] pathForResource:@"space-time" ofType:@"mp4"]; 


moviePlayer= [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:url]]; 
[self.view addSubview:moviePlayer.view]; 

moviePlayer.fullscreen = YES; 


[moviePlayer play]; 

回答

1

由30height該

MPVolumeView *volumeView = [[MPVolumeView alloc] initWithFrame:self.view1.bounds] ; 
[self.view1 addSubview:volumeView]; 

音量滑塊後添加量視使用此代碼 做一個UIView在你的ViewController約200width, 落下口該視圖(視圖1)將顯示在該視圖中1

+0

不,不會添加滑塊。你認爲滑塊應該出現在哪裏?在播放按鈕下方?好吧,它不來。 –

+0

我爲了方便編輯了我的答案。 – shujatAli

+0

仍然沒有增益:(在哪個視圖控制器中添加這個視圖?當我按下按鈕時,我的視頻打開。你是說我應該將這個視圖1添加到視圖控制器中我的按鈕是哪裏? –

相關問題