Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to reproduce the design of Twitter UITableView (see image below) :

enter image description here

Did not manage to reproduce it :(

I tried several methods like :

  • UITableViewController with self.view.layer.borderWidth = 3.0f + shadows + cornerRadius
  • UITableViewController with Grouped style and corner Radius
  • UIView with UITableView as a subview and corner radius

Any clue to solve my problem please ?

In advance, thanks a lot for your help.

share|improve this question
Thanks for the picture @DaveShaw :) – Julien Jan 27 '12 at 14:38

2 Answers

up vote 3 down vote accepted

In my opinion, this seems to be NOT your classic grouped style UITableView.

This could be a UITableView (plain style) that spans across the whole device width, and composed by custom UITableViewCell's. The cells are narrow enough to leave room for the scroll indicators to be shown.

Each UITableViewCell renders a UIImage on the cell's background: each different, depending on position - top, middle, bottom - or content type. The image for the cell background would already contain the shadow pixels. In an experience of mine, using Quartz for shadow, is too processor intensive and slow, iphone 4). In addition, each custom cell could also have its view setOpaque:TRUE for enhanced performance (against the solid colored background).

Each tweet cell may span different lines/heights so you'd probably use [UIColor colorWithPatternImage:[UIImage imageNamed:@"tile.png"]] when setting the background of the cell.

So we end up with no real shadow / processor intensive stuff. Just graphics, color matching and positioning.

share|improve this answer
Yep, i tried this kind of solution and it works great ! But I though it was possible to do it programmatically :) – Julien Feb 13 '12 at 14:29

This very similar to twitter UI

https://github.com/vicpenap/PrettyKit

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.