显示模态视图

发布于 2024-10-07 13:32:01 字数 155 浏览 4 评论 0原文

在我的应用程序中,我需要一个接一个地显示两个模态视图。点击一个屏幕将显示一个模态,然后此模态视图上的按钮将显示另一个模态。

我的模态视图还包含一个带有两个按钮的顶部栏。

显示这些模态视图的最佳方式是什么?我应该使用导航控制器来控制这些模态视图还是简单的视图控制器?

In my application, I need to show two Modal view one after the other. Tap on one screen will show a Modal and then a button on this Modal view will show another Modal.

Both my Modal view also contains a top bar with two buttons.

What is the best way to showing these Modal views. Should I use Navigation controller to control these Modal views or a simple view controller?

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

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

发布评论

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

评论(1

空城缀染半城烟沙 2024-10-14 13:32:01

我只是使用视图控制器来设置它们。只需执行此操作即可在需要时呈现视图,并根据您的需要实现“完成”或“保存”UIBarButton。

YourViewController *yourView = [[YourViewController alloc] init];
yourView.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:yourView animated:YES];

I'd just have them set up using a view controller. Just do this to present the view when it's needed, and just implement a "Done" or "Save" UIBarButton depending on what you need it for.

YourViewController *yourView = [[YourViewController alloc] init];
yourView.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:yourView animated:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文