故事板 segue 用法
当使用 storyboard
创建 UIView
时,我想了解更多可用的三种方法:custom
、push
> 和模态
。有人可以解释一下每个的目的和用法吗?提前致谢。
When a UIView
is created using storyboard
there are three methods available I would like to know more about: custom
, push
, and modal
. Can someone please explain the purpose and usage of each? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
模态:
当您使用样式类型模式时,新屏幕完全遮盖了前一个屏幕。用户必须先关闭模式屏幕,才能与底层屏幕进行交互。
推送
何时您使用的推送屏幕显示在导航堆栈上,您可以随时按后退按钮返回到上一屏幕。
自定义:
在自定义中,您可以定义自己的 segue 类,在其中您可以定义自己的屏幕之间转换的方式,
我也在这个答案中链接了教程。查看更多详细信息
Modal:
when you will use style type mode the new screen completely obscures the previous one. The user cannot interact with the underlying screen until they close the modal screen first.
Push
When you use push screen is presented on the navigation stack you can always press the back button to return to the previous screen.
Custom:
In custom you can define your own segue class, where you can define your own way for transition between the screen
I have linked tutorial also in this answer. check it for more details