I have a tableview, how can I add image to the left of this cells?
tableview
Try this code:--
UIImageView *imv = [[UIImageView alloc]initWithFrame:CGRectMake(3,2, 20, 25)]; imv.image=[UIImage imageNamed:@"arrow2.png"]; [cell addSubview:imv]; [imv release];