• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 滚动表格 View 后 UITableViewCellAccessoryCheckmark 消失

[复制链接]
菜鸟教程小白 发表于 2022-12-12 16:26:31 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在处理 tableview 多选,取消选择。

我有 3 个表格 View (带有标签 400 的表格 View 我需要多项选择和 取消选择 -> alllMumbaiTableview)

我的问题:当我选择多行时,UITableViewCellAccessoryCheckmark 消失了 滚动表格 View 后。但是这里我可以看到那些细胞还在 仅选中状态,但不显示 UITableViewCellAccessoryCheckmark

enter image description here

滚动后我的表格是这样的

enter image description here

这是我的代码

@property (nonatomic, strong) NSMutableArray *arrIndexpaths;

UItableview 方法 -

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
 {

       static NSString *simpleTableIdentifier = @"SimpleTableItem";
       UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];


         if(tableView.tag == 100)
        {
              cell.textLabel.text = [typeArray objectAtIndex:indexPath.row];
        }
        else if (tableView.tag == 300)
        {
              cell.textLabel.text = [specialityArray objectAtIndex:indexPath.row];
        }
        else if (tableView.tag == 400)
        {
                if (cell == nil)
                {

                    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];

                }
                if ([self.arrIndexpaths containsObject:[NSIndexSet indexSetWithIndex:indexPath.row]])
                {
                    cell.accessoryType = UITableViewCellAccessoryCheckmark;
                }
                else
                {
                    cell.accessoryType = UITableViewCellAccessoryNone;
                }

                    cell.textLabel.text = [allMumbaiArray objectAtIndex:indexPath.row];

        }
    return  cell;

 }

 - (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
   {


        if(tableView.tag == 100)
        {
            _typeTextfield.text=[typeArray objectAtIndex:indexPath.row];
            _typeTableview.hidden = YES;
        }
        else if (tableView.tag == 300)
        {
            _specialityTextield.text=[specialityArray objectAtIndex:indexPath.row];
            _specialityTableview.hidden = YES;
        }
        else if (tableView.tag == 400)
        {

            UITableViewCell *tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
            tableViewCell.accessoryType = UITableViewCellAccessoryCheckmark;
            [self.arrIndexpaths addObject:[NSIndexSet indexSetWithIndex:indexPath.row]];
        }

 }
- (void)tableViewUITableView *)tableView didDeselectRowAtIndexPathNSIndexPath *)indexPath
  {
    if (tableView.tag == 400)
    {
        UITableViewCell *tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
        tableViewCell.accessoryType = UITableViewCellAccessoryNone;
        [self.arrIndexpaths removeObject:[NSIndexSet indexSetWithIndex:indexPath.row]];

    }

  }

我想要什么:

1) 我想要 UITableViewCellAccessoryCheckmark 即使在滚动表格 View 之后(但是当我选择一个时不应该选择其他行。我以前的问题 -> Selecting one UITableViewCell selects the other cell after scrolling)

2) 我只需要将所有选定的值放入单个数组中。



Best Answer-推荐答案


我想建议使用每个不同的单元格标识符。我不知道如何设置 tableviews 布局,但它看起来 tableviewcell 队列替换了其他单元格,与您在上面实现的不同。

static NSString *simpleTableIdentifier = @"SimpleTableItem";

if(tableView.tag == 100)
{
    simpleTableIdentifier = @"SimpleTableItem";
}
else if (tableView.tag == 300)
{
    simpleTableIdentifier = @"SimpleTableItem1";
}
else if (tableView.tag == 400) {

    simpleTableIdentifier = @"SimpleTableItem2";
}

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

更新最终结果

#import "ViewController.h"

@interface ViewController () <UITableViewDataSource, UITableViewDelegate> {
    NSArray *tmpArray;
}

@property(nonatomic, weak) IBOutlet UITableView *tableView1, *tableView2, *tableView3;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    tmpArray = @[[NSNumber numberWithInt:2],[NSNumber numberWithInt:3]];

    [self.view bringSubviewToFront:self.tableView1];
    [self.view bringSubviewToFront:self.tableView2];
    [self.view bringSubviewToFront:self.tableView3];

}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


- (NSInteger)tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section {
    return 20;
}

- (UITableViewCell*)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {

    static NSString *simpleTableIdentifier = @"SimpleTableItem";

    if (self.tableView1 == tableView)
    {
        simpleTableIdentifier = @"SimpleTableItem";
    }
    else if (self.tableView2 == tableView)
    {
        simpleTableIdentifier = @"SimpleTableItem1";
    }
    else if (self.tableView3 == tableView) {

        simpleTableIdentifier = @"SimpleTableItem2";
    }


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];
    }

    if (self.tableView1 == tableView)
    {
        cell.textLabel.text = @"tableView1";
    }
    else if (self.tableView2 == tableView)
    {
        cell.textLabel.text = @"tableView2";
    }
    else if (self.tableView3 == tableView) {

        if ([tmpArray objectAtIndex:0] == [NSNumber numberWithInt:(int)indexPath.row] ||
            [tmpArray objectAtIndex:1] == [NSNumber numberWithInt:(int)indexPath.row] ) {
            cell.accessoryType = UITableViewCellAccessoryCheckmark;
        } else {
            cell.accessoryType = UITableViewCellAccessoryNone;
        }

        cell.textLabel.text = @"tableView3";
    }

    return  cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 70;
}

关于ios - 滚动表格 View 后 UITableViewCellAccessoryCheckmark 消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32859875/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap