- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
UIColor *color = ((indexPath.row % 2) == 0) ? [UIColor colorWithRed:255.0/255 green:255.0/255 blue:145.0/255 alpha:1] : [UIColor clearColor];
cell.backgroundColor = color;
}
上面的代码是在国外问答网上看到的。主要是用于定义UITABLEVIEW里面的CELL背景颜色。
在用到uitable view的地方加上这个方法就好了
[UIColor colorWithRed:255.0/255 green:255.0/255 blue:145.0/255 alpha:1]
其中255.0/255
这里的255.0素质就是你需要定义的RGB数字
如果你有一个颜色不知道在哪里取得他们的RGB值,打开PS的取色器看就行了。