views:

15

answers:

1

I want to insert a image in a cell which is the part of UITableView(grouped) with the coordination(image) in iphone ?

+1  A: 

Use UITableViewCell's imageView property to set an image.

myCell.imageView.image = myImage;
Jasarien