Is there a way to set the selected background color for a cell ? For the moment I'm using this code :
UIImageView* selectedBackgroundCell = [[[UIImageView alloc] initWithFrame:CGRectNull] autorelease];
[selectedBackgroundCell setImage:[UIImage imageNamed:@"cell_hover_bg.png"]];
[cell setSelectedBackgroundView:selectedBackgroundCell];
[cell setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cell_bg.png"]]];
and here is the result :
Unfortunately, the border doesn't draw well during the selected mode, as I expected. Do you know how to fix this ?