如何像操作表一样在按钮上滑动 UIViewcontroller 从下到上?
我正在制作一个 iPhone 应用程序。我想在按钮事件上从下到上滑动视图控制器,就像操作表一样。有人可以建议我一些代码或示例吗?请帮忙。
I am making an iPhone application. I want to slide a view controller on a button event from bottom to top just like action sheet. Can anyone please suggest me some code or sample for this? Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用以下代码从下到上滑动
UIView
:使用下面的代码从上到下滑动
UIView
,即关闭UIView< /代码>:
Use the following code to slide a
UIView
from bottom to top:and the code below to slide a
UIView
from top to bottom, i.e., to dismiss theUIView
:UIModalTransitionStyleCoverVertical 将视图从屏幕底部向上滑动。关闭后,视图会滑回下方。
UIModalTransitionStyleCoverVertical slides a view up from the bottom of the screen. On dismissal, the view slides back down.