我想在UISplitViewcontroller中更改Root View Controller左侧的Text颜色和背景颜色。这需要在两个方向上发生。
答案 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;