How to make a beautiful Tableview, like an iOS app for Facebook or a tumblr app?

As shown in the pictures below:

I want the UITableView my application to look clean and unique, like these two applications. Is this a UITableView ? I think I might have to use Sections. It's right? If anyone can provide a link to a tutorial on creating such user interfaces, or third-party code would be nice.

Thanks in advance.

facebooktumblr

This is what I have done so far. I want the cell to look isolated.

squak app

+6
source share
2 answers

Check out this cocoa control and make your own

Gallery FB

These are table views with custom cells. You can subclass UITableViewCell and customize it according to your needs

+5
source

Kong

There are many ways to implement this. However, to give you a start, each of these is an example of "grouped table views." You can customize the scoreboard in this style in the storyboard. From there, you can change the background color of the UITableView to whatever you want (gray to the left, blue to the right). You can add a square effect and do any number of things to make your looks more beautiful. Each section represents a different grouping, and you can change each cell in the section to distinguish different information by registering each cell with the reuse of the identifier in the storyboard (for example, the status update cell view or album presentation presentation above) and represent the corresponding formatted cells when you will need them. The sky is the limit!

+4
source

Source: https://habr.com/ru/post/953021/


All Articles