Вы можете использовать следующий код
1) cell.selectionStyle = UITableViewCellSelectionStyleRed;
OR
2) cell = [[[UITableViewCell alloc] initWithFrame: CGRectZero reuseIdentifier: CellIdentifier] autorelease];
UIView *selectionColor = [[UIView alloc] init];
selectionColor.backgroundColor = [UIColor colorWithRed:(245/255.0) green:(245/255.0) blue:(245/255.0) alpha:1];
cell.selectedBackgroundView = selectionColor;
используйте любой из приведенных выше кодов, чтобы решить вашу проблему, если проблема все еще не решена, введите ваш код, который я постараюсь решить