Thomas Clayson
Thomas Clayson

Reputation: 29925

UITableViewCell odd coloring issue:

Why does this work:

- (void)tableView: (UITableView *)tableView willDisplayCell: (UITableViewCell *)cell forRowAtIndexPath: (NSIndexPath *)indexPath {
    cell.backgroundColor = [UIColor redColor];
}

but this doesn't?

- (void)tableView: (UITableView *)tableView willDisplayCell: (UITableViewCell *)cell forRowAtIndexPath: (NSIndexPath *)indexPath {
    cell.backgroundColor = [UIColor colorWithRed:250 green:100 blue:100 alpha:1];
}

Am I thus constrained to the pre-defined UIColor colours?

Upvotes: 0

Views: 103

Answers (2)

ahmet emrah
ahmet emrah

Reputation: 1858

use:

cell.backgroundColor = [UIColor colorWithRed:250/255.0 green:100/255.0 blue:100/255.0 alpha:1];

They need to be float.

Upvotes: 3

Ole Begemann
Ole Begemann

Reputation: 135550

The values you specify are invalid. Color channel values are floats in the range 0.0f..1.0f.

Upvotes: 2

Related Questions