UI: 染色问题, tableView


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

    static NSString * cellId = @"newsCellId";



    NewsCell * cell =[ tableView  dequeueReusableCellWithIdentifier: cellId ];
    
    
    if ( nil == cell  ){
    
    
    
    
        cell = [[[NSBundle mainBundle ] loadNibNamed: @"NewsCell" owner:nil options:nil ] lastObject ];
    
    
    
    
    }


    if (indexPath.row%2 == 0 ){
    
    
        cell.backgroundColor = [UIColor cyanColor ];
    
    
    } else  {
    
    
        cell.backgroundColor = [UIColor whiteColor ];
    
    
    }


与这个, 拉一拉, 一个颜色了, 因为 cell 是 循环服用地。 没要求 ,就 颜色 不改 滴 ,直接 复用。

 if (indexPath.row%2 == 0 ){
    
    
        cell.backgroundColor = [UIColor cyanColor ];
    
    
    } 

你可能感兴趣的:(UI: 染色问题, tableView)