In twitter iPhone app, on My Profile view, there is a section with two rows, where the statistics for following, followers, tweets and favorites were presented with each seem to have the effect of a UIButton. Now I am wondering how that was created – using images for each button? To be more clear, it’s something like the following.
|-----------------------|
| 23 | 11 |
| Following | tweets | <-- tableview cell 1
| | |
|-----------------------|
| 3 | 11 |
| Followers |favorites | <--- tableview cell 2
| | |
|-----------------------|
Don’t know about your twitter app, but you can create a custom cell and add two buttons to it. Then when the cell is instantiated, you can specify the selectors and custom background image if you want.
This code is a little older, but it demonstrates the point.