views:

54

answers:

2

Hi,

I want a tutorial for help me to create a table view thumbnail like this.

thumbnail view

I use UItableView to implement this view and try to custom UITableViewCell

but UITableViewCell can't support

anyone can sugess me

thank.

A: 

In fact, a UITableView might well be a good starting point.

I think I would create a custom UITableViewCell with four horizontal images. The rest is pretty much the same as some of Apple's sample code.

Stephen Darlington
OK, I will find simple code from Apple, thank
neokain
+2  A: 

If you don't need all the features of a table view, and the number of thumbnails isn't large, you can just make the thumbnails as image buttons inside a UIView inside a UIScrollView.

hotpaw2