iphone中的表视图属性

iphone中的表视图属性,iphone,Iphone,如何在iphone中更改tableview中每行文本的颜色?有人知道吗?那么请给我指导 提前感谢。基本上,您需要在表视图中执行以下操作:cellforrowatinexpath:方法 cell.textLabel.textColor = yourColor; 如果您想了解有关使用自定义单元格的更多信息,可以查看我的博客基本上,您需要在表视图中执行以下操作:cellforrowatinexpath:方法 cell.textLabel.textColor = yourColor; 如果您想了解有

如何在iphone中更改tableview中每行文本的颜色?有人知道吗?那么请给我指导


提前感谢。

基本上,您需要在
表视图中执行以下操作:cellforrowatinexpath:
方法

cell.textLabel.textColor = yourColor;

如果您想了解有关使用自定义单元格的更多信息,可以查看我的博客

基本上,您需要在
表视图中执行以下操作:cellforrowatinexpath:
方法

cell.textLabel.textColor = yourColor;
如果您想了解有关使用自定义单元格的更多信息,可以在中查看我的博客

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
加:

  cell.textLabel.textColor = [UIColor redColor];

加:

  cell.textLabel.textColor = [UIColor redColor];

把你所有的行颜色都排在一排。假设myColorary,它将包含行的所有UIColor对象

do
cell.textLabel.textColor=[mycolorray objectAtIndex:indexPath.row]输入


tableView:CellForRowAtIndexPath:
函数。

将所有行的颜色放在一个NSArray中。假设myColorary,它将包含行的所有UIColor对象

do
cell.textLabel.textColor=[mycolorray objectAtIndex:indexPath.row]输入


tableView:CellForRowAtIndexPath:
函数。

我想在tableView的每行文本上使用不同的颜色?我想在tableView的每行文本上使用不同的颜色?