tags:

views:

23

answers:

1

I implemented table view in my app. Now in a table cell right now I am showing only three items, which I feel are very less. What I want to show is that first is an image then another image then text and then accessory. So how can I accomplish this????

A: 

You can subclass UITableViewCell and then customize it to your demands. You can listen to events or add any Subviews you want. This topic covers your needs I think:

http://stackoverflow.com/questions/2366802/customizing-an-uitableviewcell-subclass

Icky