如何在iphone应用程序中更改表格视图中文本的颜色与默认黑色?
答案 0 :(得分:2)
试试这个。
cell.textLabel.textColor=[UIColor blueColor];
您还可以提供RGB值,如
cell.textLabel.textColor = [UIColor colorWithRed:200/256.0 green:0/256.0 blue:67/256.0 alpha:1.0];
一切顺利。
答案 1 :(得分:2)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.textLabel.textColor = [UIColor yellowColor]; //Change the text color
}
// Configure the cell...
return cell;
}