is it possible to change background image of each sections in uitableview?
I want to add background image for each sections in uitableview does anyone know how can I do that?
Thanks in advance!
like this picture --> put different background images for wednesday , Thursday and friday separately

Edit I want to add image 1 for wednesday image 2 for Thursday image 3 for friday and ..... how can I specify that ?
Edit
this the code for creating sections header I want to have background also
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { if(section == 0) return @"Monday"; else if(section == 1){ return @"Tuesday"; }else if(section == 2){ return @"Wednesday"; } else if(section == 3){ return @"Thuesday"; } else if(section == 4){ return @"Friday"; } else if(section == 5){ return @"Saturday"; }else return @"Sunday"; }