tags:

views:

45

answers:

2

Hi guys

How can i display multi-image in UITableView like image below: http://c.upanh.com/upload/6/172/LN0.10355393_1_1.jpg

Please give me some code. Thank you

A: 

You need to subclass UITableViewCell and add something like an NSArray of UIImage ivar to display in each cell (or 4 UIImage ivars if this number is fixed).

May I also advice you to accept answers that helped you for your 14% accept rate won't help you much getting new ones ;)

Thomas Joulin
A: 

You'll need to create a custom UITableViewCell by subclassing. There is an extensive tutorial abot it here in the Apple Developer Center. There are also many tutorials about this in web here are two I found: one, two.

texmex5