2012-03-29 60 views

回答

0

嘗試將此....

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

    static NSString *CellIdentifier = @"Cell"; 

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (cell == nil) { 
     cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; 
    } 
    cell.backgroundColor = [UIColor clearColor]; // clear the cell background color 

    // Configure the cell. 

    return cell; 
} 
0

您可以使用下面的代碼

1)cell.selectionStyle = UITableViewCellSelectionStyleRed;

OR

2)細胞= [[[ALLOC的UITableViewCell] initWithFrame:方法CGRectZero reuseIdentifier:CellIdentifier]自動釋放];

UIView *selectionColor = [[UIView alloc] init]; 
selectionColor.backgroundColor = [UIColor colorWithRed:(245/255.0) green:(245/255.0) blue:(245/255.0) alpha:1]; 
cell.selectedBackgroundView = selectionColor; 

使用任何的上面的代碼將解決你的問題,如果你仍然問題沒有解決把你的代碼,我會盡力解決