zoukankan      html  css  js  c++  java
  • UITableViewCell 添加 checkbox 多选

    TableViewCell多选;

    CheckBox;

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *CellIdentifier = @"Cell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        
        if (!cell) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }
        
        NSString *seleCity = [[dataSourceArray objectAtIndex:indexPath.section] objectAtIndex:indexPath.row];
        cell.textLabel.text = seleCity;
        cell.textLabel.textAlignment = NSTextAlignmentLeft;
        cell.accessoryType = UITableViewCellAccessoryNone;
        cell.textLabel.font = [UIFont systemFontOfSize:18];
        if ([selectCitysArray containsObject:indexPath]) {
            cell.imageView.image = [UIImage imageNamed:@"checkbox_on_background.png"];
        }
        
        else
        {
            cell.imageView.image = [UIImage imageNamed:@"checkbox_off_background.png"];
        }
        
        
        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleChecking:)];
        [cell.imageView addGestureRecognizer:tap];
        cell.imageView.userInteractionEnabled = YES;
        
        return cell;
    }
    
    - (void) handleChecking:(UITapGestureRecognizer *)tapRecognizer {
        CGPoint tapLocation = [tapRecognizer locationInView:self.tableView];
        NSIndexPath *tappedIndexPath = [self.tableView indexPathForRowAtPoint:tapLocation];
        
        if ([selectCitysArray containsObject:tappedIndexPath]) {
            [selectCitysArray removeObject:tappedIndexPath];
        }
        else {
            [selectCitysArray addObject:tappedIndexPath];
        }
        [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:tappedIndexPath] withRowAnimation: UITableViewRowAnimationFade];
    }

    参考:http://stackoverflow.com/questions/3666629/how-to-add-checkboxes-to-uitableviewcell

  • 相关阅读:
    生产宕机dunp配置
    虚拟机下载地址
    处理soapUI特殊返回报文 【原】
    SpringMVC 手动控制事务提交 【转】
    码云URL
    Java IO流操作汇总: inputStream 和 outputStream【转】
    springMVC下载中文文件名乱码【转】
    js
    js
    js
  • 原文地址:https://www.cnblogs.com/cocoajin/p/3497909.html
Copyright © 2011-2022 走看看