Изменение цвета контроллера корневого представления в контроллере UISplitView - PullRequest
0 голосов
/ 25 ноября 2010

Я хочу изменить цвет текста и цвет фона левой стороны контроллера RootView в моем контроллере UISplitView.Это должно происходить в обеих ориентациях.

1 Ответ

0 голосов
/ 07 декабря 2010

Чтобы изменить цвет текста:

// Dequeue or create a cell of the appropriate type.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    cell.accessoryType = UITableViewCellAccessoryNone;
}

// Configure the cell.
cell.textLabel.text = [[data objectAtIndex:indexPath.row] retain];
cell.textColor = [UIColor blueColor]; //Here you can use whatever color you want
return cell;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...