У меня есть табличное представление, и я хочу знать, как изменить выбранный цвет текста строки, скажем, на Red? Я пробовал этот код:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell= [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:nil] autorelease];
cell.text = [localArray objectAtIndex:indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
cityName = [localArray objectAtIndex:indexPath.row];
UITableViewCell* theCell = [tableView cellForRowAtIndexPath:indexPath];
theCell.textColor = [UIColor redColor];
//theCell.textLabel.textColor = [UIColor redColor];
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
(1) Когда я выбираю любую строку, тогда цвет текста изменяется на красный, но когда я выбираю другой, то ранее выбранный текст строки остается красным. как я могу это решить?
(2) Когда я просматриваю изменение цвета текста таблицы на черный цвет, как это решить?
Спасибо..