程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> mediaplayer-在播放視頻的時候statusBar隱藏

mediaplayer-在播放視頻的時候statusBar隱藏

編輯:編程綜合問答
在播放視頻的時候statusBar隱藏

使用[[UIApplication sharedApplication] setStatusBarHidden:YES];來隱藏狀態條。但是狀態條還是顯示。

代碼:

MPMoviePlayerViewController *mpviewController = [[MPMoviePlayerViewController alloc]initWithContentURL:[NSURL fileURLWithPath:path]];
[mpviewController.view setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[self.view addSubview:mpviewController.view];
[[UIApplication sharedApplication]setStatusBarHidden:YES];
[self presentMoviePlayerViewControllerAnimated:mpviewController];

最佳回答:


用下面的代碼隱藏狀態條

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];

或者

mpviewController.controlStyle = MPMovieControlStyleFullscreen;

或者:

[self setWantsFullScreenLayout:YES];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved