如何创建 iBook 风格的用户界面?

发布于 2024-11-29 09:28:07 字数 171 浏览 1 评论 0原文

我正在努力将一些书籍或 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:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只怪假的太真实 2024-12-06 09:28:07

您想要做的是重新创建可以处理每行多个列的 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/CWUIKit
The 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文