with iOS 6.
You can use the following delegate method and return NO
in case you don't it to be selected and YES
in case you want it to be selected.
- (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath
{
return indexPath.section == 0;
}