gpt4 book ai didi

播放视频后 iOS 7 状态栏消失

转载 作者:可可西里 更新时间:2023-11-01 02:58:55 25 4
gpt4 key购买 nike

我不是唯一遇到此类问题的人。这是另一个,Status bar height changes after playing a Youtube video .但我仍然找不到解决这个问题的方法。我没有使用 MPMoviePlayerController。我想我只需要使用这些代码;

[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:NO];

self.webView.frame = CGRectMake(0.0,
20.0,
self.webView.frame.size.width,
self.webView.frame.size.height);

但它并不是那么有效。

请看下面这张图片..

enter image description here

起初这是我的“家”的样子。

enter image description here

播放来自 Youtube/Vimeo(或其他)的视频时状态栏消失。

enter image description here

当我回去时,看到他们聚在一起。

enter image description here

发现 FB 知道如何处理这个问题。他们的状态栏就出现在那里。

有什么帮助吗???

提前干杯!

最佳答案

我不知道是否适用于你的情况,但在我的情况下,状态栏在我加载 UIImagePickerController 并更改我的默认屏幕方向后出现。

我修复了这种情况,像这样在 appDelegate 中添加 application.statusBarHidden = YES;:

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
// Detect if I need to hide the StatusBar (optional)
if (iNeedToHide == YES) {
application.statusBarHidden = YES;
}
return UIInterfaceOrientationMaskLandscape;

希望对你有帮助

关于播放视频后 iOS 7 状态栏消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19291562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com