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 ];
    
    
    } 

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容