是否有任何 tut/eg 可用于实现类似于 Flipboard 浏览器的 ui 导航工具?
有谁知道可以帮助我构建类似于 Flipboard 浏览器的教程吗?
基本上我想从我的应用程序中的数据库中过滤一些内容,并且我特别有兴趣了解他们的浏览器是如何实现的,如我所愿:
- 能够让浏览器覆盖右侧的主视图 边。
- 当看到浏览器时隐藏详细视图
- 在主视图中也有一个工具栏来过滤我的一些数据。
我不确定是否应该选择主/详细模板或从简单的视图模板开始。
Does anyone knows a tutorial that could help me to build something similar to the browser of flipboard?
Basically i would like to filter some contents from a DB in my app and I am specially interested to understand how their browser was implemented as I would like:
- To be able to have the browser to overlay the main view on the right
side. - Shadow the detail view when the browser is seen
- To have a toolbar in the main view to filter some of my data too.
I am not sure if i should go for the master / detail template or start with a simple view template.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在研究的功能通过 UIPopoverController 更容易实现。弹出窗口允许显示覆盖主窗口的图层,并且在弹出窗口视图外部单击时可以将其关闭。
此处不适应使用主/详细信息模板。我开始使用单个视图模板。
不过,我仍在寻找某种方式来定制 UIPopoverController。
The feature I was looking at is easier to implement through a UIPopoverController. The popover allows to display a layer that overlay the main window and that can be dismissed when clicking outside of popover view.
Using the master/detail template was not adapted here. I started with a single view template instead.
I am still looking into some way for the customization of the UIPopoverController though.