網(wǎng)上的設(shè)置背景顏色跟背景圖片不好使了,這個(gè)是改系統(tǒng)的方法,在選中是調(diào)用,改變背景色
-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
UITableViewCell*cell = [_leftTableViewcellForRowAtIndexPath:indexPath];
cell.backgroundColor= [UIColor whiteColor];
}
- (void)tableView:(UITableView*)tableView didDeselectRowAtIndexPath:(NSIndexPath*)indexPath
{
UITableViewCell*cell = [_leftTableViewcellForRowAtIndexPath:indexPath];
cell.backgroundColor= [UIColor redColor];
}
}