UIModalPresentationFullScreen - TransitionAnimation 背后的背景颜色

发布于 2024-10-01 10:54:26 字数 611 浏览 6 评论 0原文

我目前正在构建一个通用应用程序。

用户点击按钮后,我通过以下方式在模态视图中呈现一些设置:

viewCtrl.modalPresentationStyle = UIModalPresentationFullScreen;
viewCtrl.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:viewCtrl animated:YES];

在 iPhone 和 iPad 上,两种 Transitionsstyle 看起来相同。现在的问题是,在 iPad 上,倾斜视图后面的背景是白色的。这个白色的背景看起来很丑。 在 iPhone 上它是黑色的,正如它应该的那样。

我还尝试向我的 [UIApplication window] 添加黑色背景视图,

UIView *bgView = [[UIView alloc] init];
[bgView setBackgroundColor:[UIColor blackColor]];
[window addSubview:bgView];

但这没有什么区别。

I'm currently building a universal app.

After the user taps a button, I present some settings in a modal View in the following way:

viewCtrl.modalPresentationStyle = UIModalPresentationFullScreen;
viewCtrl.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:viewCtrl animated:YES];

On the iPhone and iPad both Transitionsstyles look the same. Now the problem is, on the iPad the background, behing the tilting view, is white. This white background just looks ugly.
On the iPhone it is black, as it is supposed to be.

I also tried adding a black backgroundview to my [UIApplication window]

UIView *bgView = [[UIView alloc] init];
[bgView setBackgroundColor:[UIColor blackColor]];
[window addSubview:bgView];

but it doesn't make a difference.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫轩蝶泪 2024-10-08 10:54:26

我认为这就像将 UIWindow 背景颜色设置为黑色一样简单。例如,如果您在 IB 中打开 MainWindow.xib,您应该能够在那里设置背景 - 或者在 AppDelegate 中您应该能够设置 UIWindow 的背景。

I think it is as simple as setting the UIWindow background color to black. For example, if you open the MainWindow.xib in IB, you should be able to set the background there - or in your AppDelegate you should be able to set the background of the UIWindow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文