gpt4 book ai didi

ios - 全屏显示 ViewController

转载 作者:行者123 更新时间:2023-12-01 19:30:33 28 4
gpt4 key购买 nike

我在按钮操作中展示了一个 View Controller ,如下所示,

PromptController *obj = [[[PromptController alloc]initWithNibName:@"PromptController" bundle:nil]autorelease];
UINavigationController *navigation = [[[UINavigationController alloc]initWithRootViewController:obj]autorelease];
[self presentViewController:navigation animated:YES completion:nil];
[AVSession stopRunning];
但它没有出现在手机的全屏上。它呈现如下
enter image description here
如何在全屏上呈现它。非常感谢任何帮助

最佳答案

在 iOS 13 中,默认演示样式已更改。如果你想要 iOS 12 的演示风格,你可以更改 modalPresentationStyle.fullScreen .
swift 版本

navigation.modalPresentationStyle = .fullScreen
Objective-C
navigation.modalPresentationStyle = UIModalPresentationOverFullScreen;

关于ios - 全屏显示 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63012919/

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