gpt4 book ai didi

ios - 如何为 iPad 创建来自屏幕底部的弹出框

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

我正在寻找一种方法来实现 this kind of popover这种弹出窗口。

是否有基本的 iOS 命令来生成这种样式,而不是我们在 XCode 中看到的通常的 Arrow + Border 弹出框?或者是否有 API 可以做这种事情。

弹出框从屏幕底部出现,就像有时在 App Store 动画中一样。

谢谢

最佳答案

您要做的是创建一个自定义 UIVIewController模态演示样式设置为 UIModalPresentationFormSheet :

YourCustomViewController *customVC = [[YourCustomViewController alloc] initWithNib:@"YourCustomViewController" bundle:nil];

customVC.modalPresentationStyle = UIModalPresentationFormSheet;

[self self presentViewController:customVC animated:YES completion:nil];

您还必须创建一个工具栏并使用“关闭”或“完成”按钮正确格式化它,该按钮将关闭 View Controller

关于ios - 如何为 iPad 创建来自屏幕底部的弹出框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15350109/

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