`

UItableview cell 背景

 
阅读更多




Here is the most efficient way I have come across to solve this problem, use the willDisplayCell delegate method (this takes care of the white color for the text label background as well when using cell.textLabel.text and/or cell.detailTextLabel.text):

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { ... }

When this delegate method is called the color of the cell is controlled via the cell rather than the table view, as when you use:

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

So within the body of the cell delegate method add the following code to alternate colors of cells or just use the function call to make all the cells of the table the same color.

if (indexPath.row % 2)
{
    [cell setBackgroundColor:[UIColor colorWithRed:.8 green:.8 blue:1 alpha:1]];
}
else [cell setBackgroundColor:[UIColor clearColor]];

This solution worked well in my circumstance...



static NSColor *SelectedCellBGColor = ...;
static NSColor *NotSelectedCellBGColor = ...;

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSIndexPath *currentSelectedIndexPath = [tableView indexPathForSelectedRow];
    if (currentSelectedIndexPath != nil)
    {
        [[tableView cellForRowAtIndexPath:currentSelectedIndexPath] setBackgroundColor:NotSelectedCellBGColor];
    }

    return indexPath;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [[tableView cellForRowAtIndexPath:indexPath] setBackgroundColor:SelectedCellBGColor];
}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (cell.isSelected == YES)
    {
        [cell setBackgroundColor:SelectedCellBGColor];
    }
    else
    {
        [cell setBackgroundColor:setBackgroundColor:NotSelectedCellBGColor];
    }
}
分享到:
评论
1 楼 witcheryne 2013-03-21  
试试 editStyle,  editStyle 中支持 multiSelect 看看.

UIView *backgrdView = [[UIView alloc] initWithFrame:cell.frame];
backgrdView.backgroundColor = [UIColor whiteColor];
cell.backgroundView = backgrdView;

相关推荐

    UITableView背景透明

    在某些设计场景下,我们可能希望使UITableView的背景透明,以实现更具视觉吸引力的界面效果。这篇博客“UITableView背景透明”将探讨如何通过源码和工具来实现这一功能。 首先,我们需要理解UITableView的默认背景...

    在UITableView中自定义UITableViewcell实现ibooks图书列表样式

    7. **数据绑定**:在`- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath`中,获取到自定义Cell后,根据数据源(如NSArray或NSMutableArray)设置Cell内的各...

    ios 自定义cell背景的更改

    默认情况下,UITableView的`selectionStyle`为`.default`,当cell被选中时会显示半透明蓝色背景。若想改变选中状态的背景,可以设置`selectionStyle`为`.none`,然后手动处理选中状态的背景颜色。 在实际开发中,...

    iOS-UITableview 的cell边线阴影

    这篇内容将深入讲解如何实现`UITableView`的cell边线阴影及渐变设计。 首先,我们需要理解`UITableView`的工作原理。`UITableView`是由多个`UITableViewCell`组成的,每个`UITableViewCell`代表列表中的一个条目。...

    改变iOS应用中UITableView的背景颜色与背景图片的方法

    本篇将详细介绍如何改变UITableView的背景颜色以及设置背景图片。 首先,我们来看如何改变UITableView的背景颜色。最直接的方法就是设置`backgroundColor`属性。例如,如果想要将UITableView的背景色改为红色,可以...

    自定义UITableViewCell

    7. **优化性能**:为了提高性能,确保在`dequeueReusableCell(withIdentifier:for:)`返回的Cell中重置那些不需要改变的属性,如背景色、字体等,避免不必要的重绘。 8. **使用代码布局**:若不使用Storyboard,可以...

    UITableView单选

    UITableView由一系列UITableViewCell组成,每个cell对应数据源中的一个对象。当用户点击cell时,我们可以通过代理方法`tableView(_:didSelectRowAt:)`来捕捉这个事件。 实现单选功能,通常我们会维护一个变量,如`...

    QQ风格的UITableView

    QQ风格的UITableView则是在这个基础上进行了视觉和交互上的定制,比如使用特殊的背景图,自定义cell的样式,增加滑动选中效果,以及可能的动画过渡等。 要实现QQ风格的UITableView,首先你需要熟悉UITableView的...

    UISCrollView与UITableView嵌套使用

    2. **使用自定义的`UITableView`实现**:另一种方法是使用一个只包含一个`UITableViewCell`的`UITableView`作为背景,并在这个单元格上放置一个水平方向的`UITableView`。这种方式可以实现类似的效果,同时避免滑动...

    IOS代码中使用自定义UITableView

    自定义UITableView还包括对行间的间距、分割线样式、背景颜色等视觉元素的调整。这些可以通过UITableView的属性设置,如`separatorStyle`、`tableFooterView`、`backgroundColor`等。 此外,对于复杂的表格结构,...

    IOS中UITableView优化例子

    14. **减少透明效果**:透明效果会增加渲染成本,尽量避免cell背景和子视图的透明。 15. **避免强引用循环**:在cell中使用闭包时,注意弱引用,避免造成内存泄漏和强引用循环。 通过以上这些优化技巧,我们可以...

    tableview上加背景图片

    在iOS开发中,为UITableView添加背景图片是一种常见的需求,可以增强界面的视觉效果。下面将详细解释如何在UITableView上添加背景图片以及通过代码创建UITableView的相关知识点。 首先,我们需要准备一张背景图片,...

    IOS UiTableView简单应用仿个人中心

    如果需要自定义分割线,可以调整`tableFooterView`或`tableHeaderView`,或者在Cell的背景视图上添加自定义线条。 通过以上步骤,你可以构建出一个基本的UITableView应用,模拟个人中心的布局。在实际项目中,可能...

    iOS如何固定UITableView中cell.imageView.image的图片大小

    首先,问题的背景是,从网络接口获取的图片尺寸可能与期望的cell高度不匹配,导致图片超出cell的边界,破坏了界面的美观性。为了解决这个问题,我们可以采取几种策略: 1. **自定义UITableViewCell**:创建一个新的...

    UITableView的优化技巧 - iOS知识库1

    7. **复用Cell的背景View**:对于背景颜色一致的Cell,可以复用背景View,减少视图的创建。 8. **利用AutoLayout约束优化**:确保Cell的AutoLayout约束正确且高效,避免约束冲突导致的性能问题。 通过上述优化策略...

    cell设计、编辑窗体

    1. 背景与选中状态:可以通过设置cell的背景View和selectedBackgroundView来改变cell的默认背景颜色和选中时的颜色。 2. 图片和文字排版:利用Stack View或自定义布局,可以实现图片和文字的对齐和间距调整。 3. ...

    IOS之表视图UITableView自定义单元格

    在iOS开发中,UITableView是一种非常重要的视图组件,它用于展示列表数据,广泛应用...在实际项目中,还需要注意性能优化,如使用Cell复用机制,以及合理利用后台线程加载数据,以避免阻塞主线程,确保应用的流畅运行。

    滚动时背景模糊

    这种效果在UITableView或UICollectionView等可滚动视图上尤为常见,它会在用户滚动内容时对背景进行动态模糊处理,使得主要内容更加突出。在标题"滚动时背景模糊"和描述"tableView上滚动时背景模糊,下滚时背景清晰...

    UITableView全选功能源码

    8. **动画效果**:为了提升用户体验,可以添加动画效果,比如选中/取消选中时单元格背景色的变化,以及全选按钮的状态切换。 9. **多选模式(Multiple Selection)**:默认情况下,UITableView不支持多选。我们需要...

    用UITableView 进行多选的代码例子

    为了显示用户的选择,我们可以在Cell上添加一个可选的背景视图,例如一个蓝色的选中状态,或者使用内置的编辑样式。在`cellForRowAt`方法中,根据模型状态设置Cell的编辑样式: ```swift func tableView(_ ...

Global site tag (gtag.js) - Google Analytics