I want to insert a image in a cell which is the part of UITableView(grouped) with the coordination(image) in iphone ?
views:
15answers:
1
+1
A:
Use UITableViewCell
's imageView
property to set an image.
myCell.imageView.image = myImage;
Jasarien
2010-04-06 09:37:03