How can I create an iBook-style user interface? [closed]
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:
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.
精彩评论