Detailed explanation of the IOS UITableView color settings example
1. System default color settings
//colorless = UITableViewCellSelectionStyleNone; //blue = UITableViewCellSelectionStyleBlue; //grey = UITableViewCellSelectionStyleGray;
2. Customize color and background settings
Change the background color when the UITableViewCell is selected:
UIColor *color = [[UIColoralloc]initWithRed:0.0green:0.0blue:0.0alpha:1];//Define your own color through RGB[html] view plaincopy = [[[UIView alloc] initWithFrame:] autorelease]; = [UIColor xxxxxx];
3 Custom UITableViewCell when selected background
= [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@""]] autorelease]; There are also font colors = [UIColor xxxcolor]; [ setTextColor:color];//Set the cell's font color
4. Set the color of the dividing line between tableViewCell
[theTableView setSeparatorColor:[UIColor xxxx ]];
5. Set the color of the font in the cell
// Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { if(0 == ) { = ...; = ...; } ... }
The above are several ways to set the color of IOS UITableView. If you have any questions, please leave a message or go to the community of this site to communicate and discuss. Thank you for reading. I hope it can help you. Thank you for your support for this site!