如何创建 iBook 风格的用户界面?
我正在努力将一些书籍或 pdf 文件存放在书架上。我可以获得一些教程或代码来帮助使 Apple iBooks 成为一种用户界面吗?我该如何实施这个?
这是我的意思的屏幕截图:
I was working on storing some books or pdf in a shelf. Can i get some tutorial or code which helps in making Apple iBooks kind of a user interface. How can i implement this one?
Here is screenshot of what I mean:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要做的是重新创建可以处理每行多个列的
UITableView
。您可以通过子类化
UIScrollView
并编写分配代码来实现此目的。我已经完成了一个名为 CWColumnTableView 的实现,它支持动画、拖放重新排序等。它可以在 BSD 许可证下使用:https://github.com/Jayway/CWUIKit
该项目还有一个示例应用程序。基本上它的工作原理与 UITableView 一样,您只需提供单元格,以及可选的背景和/或行背景。
What you want to do is a recreation of
UITableView
that can handle multiple columns per row.You do this by subclassing
UIScrollView
and write allot of code.I have done one such implementation called
CWColumnTableView
, with support for animations, drag-n-drop reordering and more. It's available under BSD-license here: https://github.com/Jayway/CWUIKitThe project also has an example application. Basically it works just as
UITableView
, you just provide your cells, and optionally a background and/or row backgrounds.