在UISplitView控制器中更改根视图控制器的颜色

时间:2010-11-24 22:41:23

标签: ipad

我想在UISplitViewcontroller中更改Root View Controller左侧的Text颜色和背景颜色。这需要在两个方向上发生。

1 个答案:

答案 0 :(得分:0)

更改文字颜色:

// 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;