For some reason, none of my UITableViewCell highlights blue. In IB, I have it set to highlight blue, and I don't have a code that overrides IB.
Have you noticed anything that might cause this?

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { int showID = [[[singleton.programs objectAtIndex:indexPath.row]objectForKey:@"id"]intValue]; //creates the url and loads the list of products //NSLog(@"showID: %d", showID); URLCreator * productsURL = [[URLCreator alloc] initStandard:@"getProgramProductsForList"]; [productsURL addParam:@"id" stringValue:[NSString stringWithFormat:@"%d", showID]]; WebManager *productsWM = [[WebManager alloc]init]; [productsWM load:[productsURL finalURL] withSelector:@selector(parseProducts) object:[NSNumber numberWithInt:showID]]; }
My user cell currently has nothing but `@ property / @ synthesize @, but here it is.
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) {
source share