iPhone基本的sheet编程?
我想在我的应用程序中编写一个“添加”窗口,就像“联系人”应用程序中的“添加联系人”窗口或“天气”应用程序中的“添加城市”窗口一样。
我的问题是:如何编码向上滑动联系人和联系人的效果?天气功能?
——瑞
I want to program an "Add"-Window to my application, much like the "Add Contact"-window in the Contacts app or the "Add City"-window in the Weather app.
My question is: how do I code the effect of sliding up that Contacts & Weather feature?
-- Ry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些称为“模态视图控制器”。
您为该“工作表”创建一个视图控制器,并从另一个视图控制器的任何方法调用
以向上滑动工作表,并从工作表视图控制器的任何方法调用
以向下滑动。在 Xcode 文档中搜索术语“模态视图控制器”以获取详细信息。
These are called "modal view controllers".
You create a view controller for that "sheet", and from any method of another view controller call
to slide up the sheet, and from any method of the sheet view controller call
to slide down. Search the term "Modal View Controllers" in the Xcode docs for detail.