• cell单选


    先上图给看看效果

    cell单选逻辑就是取出上一个选中的cell 设置图片为默认图片 在取出点击的cell 设置图片为选中图片即可

    废话不多说直接上代码

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

    {

        

       // [tableView deselectRowAtIndexPath:indexPath animated:YES];

        

        NSIndexPath * indexold = [NSIndexPath indexPathForRow:self.oldIndex inSection:self.oldSectionIndex];

        

        HBAutoReplyCell * cell = [tableView cellForRowAtIndexPath:indexold];

        cell.checkImageView.image = [UIImage imageNamed:@"CQweixuanzhong.png"];

        

        HBAutoReplyCell * cell2 = [tableView cellForRowAtIndexPath:indexPath];

        cell2.checkImageView.image = [UIImage imageNamed:@"CQxuanzhong.png"];

        

        self.oldSectionIndex = indexPath.section;

        self.oldIndex = indexPath.row;

        

    }

  • 相关阅读:
    常见排序算法的实现和比较
    关于数据库索引的原理和应用
    数据库查询优化的几种方式
    进程间通信的几种方式
    TCP的三次握手和四次分手
    【面试题35】第一个只出现一次的字符
    【面试题34】丑数
    【面试题33】把数组排成最小的数
    【面试题32】从1到n整数中1出现的次数
    简单工厂模式
  • 原文地址:https://www.cnblogs.com/supersr/p/6112296.html
Copyright © 2020-2023  润新知