Reputation: 984
I found this UI online, the UI looks amazing, is there any tips on creating such a thing. It seems a customed UITableView.
Many Thanks!
Upvotes: 0
Views: 66
Reputation: 1568
It's a UITableView
with a custom background image and what looks like custom layers with masking (for the date and tags).
Here's a library for generating tags, though you could easily just create the layers yourself. There's alot of answers on SO like this one which will explain how to mask text on a layer. The textured look on everything is because the opacity of the layers is not quite 100%.
As for the background images I'm betting the first one doesn't include the background cell and just has the transparent cutout which shows the background. The other cells most likely have the adjacent cell "background" in the background image (since cells don't overlap). Alternating backgrounds are set based on whether the indexPath.row
is even or not.
The "0/2012" date on the left side looks like a UILabel
that's been rotated 90 degrees and stroked.
The rest of the cell is just standard text and an image.
Upvotes: 2