I am setting the background image
for UITableViewCell
it is working fine but it stretches the image i do not want to stretch the image and i want the image should be of same size in cell so i think cell size should be same
here is the code for cell image
cell.backgroundView = [[[UIImageView alloc] initWithImage:[[UIImage imageNamed:@"1.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0]]autorelease];
My image size is "275 (width) * 59 (height)".
Any idea how to fix this issue.