在 UITableView 中设置复选标记 [英] Set checkmark in UITableView

查看:27
本文介绍了在 UITableView 中设置复选标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 UITableView 中选择的行中设置复选标记(放置在弹出视图中).其实我有这样的事情:

I'm trying to set checkmark in rows which are selected in UITableView (placed in popup view). Actually I have something like this:

-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    // Check if current row is selected
    Boolean isNowChecked = NO;
    if([self.tableView cellForRowAtIndexPath:indexPath].accessoryType == UITableViewCellAccessoryCheckmark) 
    {
        isNowChecked = YES;
    }

    if(isNowChecked) 
    {
        [self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
    }
    else 
    {
        [self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
    }
    return indexPath;
}

结果我可以选择行,例如我触摸第一个项目然后我看到复选标记.当我向下滚动表格视图时,我看到我还检查了其他项目(编号 17、32).当我取消选中我的第一个项目时,每个检查也会消失.

In result I'm able to select rows, for example I touch first item then I see checkmark. When I scroll down my table view, then I see that I have check also other items (number 17, 32). When I uncheck my first item, then every check also disappear.

您对这种情况的可能原因有什么建议,我该如何避免?

Do you have any suggestions what could be reason of this situation, and how can I avoid it?

推荐答案

//试试这个//在.h

// Try this //in .h

NSMutableArray *arr_fortable;

//在.m

- (void)viewDidLoad
{
    [super viewDidLoad];

    arr_fortable = [[NSMutableArray alloc] init];
    for (int i =0; i<5; i++)
    {
        NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
        [dict setObject:[NSString stringWithFormat:@"%d",i+1] forKey:@"data"];
        [dict setObject:@"0" forKey:@"checkmark"];
        [arr_fortable addObject:dict];
    }
}


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [arr_fortable count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    // Configure the cell...
    cell.textLabel.text = [[arr_fortable objectAtIndex:indexPath.row] objectForKey:@"data"];
    if ([[[arr_fortable objectAtIndex:indexPath.row] objectForKey:@"checkmark"] integerValue] == 1)
    {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }
    else
    {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([[[arr_fortable objectAtIndex:indexPath.row] objectForKey:@"checkmark"] integerValue] == 1)
    {
        [[arr_fortable objectAtIndex:indexPath.row] setObject:@"0" forKey:@"checkmark"];
    }
    else
    {
        [[arr_fortable objectAtIndex:indexPath.row] setObject:@"1" forKey:@"checkmark"];
    }
    [self.tableView reloadData];
}

这篇关于在 UITableView 中设置复选标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆