iOS:UITableView单元格中的UIStepper

时间:2014-02-12 13:07:50

标签: ios uitableview uistepper

我从来没有真正需要使用UIStepper,所以我想我会尝试一下。

我在表格单元格中尝试过它。以下是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    UIStepper *stepper = [[UIStepper alloc] initWithFrame:(CGRect){{40, 40}, 20, 20}];
    [stepper addTarget:self action:@selector(stepperTapped:) forControlEvents:UIControlEventValueChanged];
    stepper.tag = indexPath.row;
    stepper.stepValue = 1;
    stepper.continuous = YES;
    stepper.minimumValue = 0;
    stepper.maximumValue = 10;
    [cell.contentView addSubview:stepper];

    return cell;
}

行动方法:

- (void)stepperTapped:(UIStepper*)stepper
{
    NSLog(@"sender tag: %li", (long)stepper.tag);

    UITableViewCell *currentCell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:stepper.tag inSection:0]];
    NSNumber *stepperValue = [NSNumber numberWithDouble:stepper.value];
    currentCell.textLabel.text = [NSString stringWithFormat:@"%f", stepper.value];
    [self.tableView reloadData];
}

我只是用4个细胞和1个部分进行测试。

它会运行,但是步进器只增加一次(0 - > 1或1 - > 0),直到10才会增加,这是我设置的最大数量。

我测试了不在表格单元格内的相同代码,它工作正常。从0到10,从10到0,每一步。

这个小实验花了我2个小时试图找到解决方案。

有人能在这里发现问题吗?

1 个答案:

答案 0 :(得分:0)

这样做,

仅当cell为nil时才创建UIStepper

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

    static NSString *CellIdentifier = @"Cell Identifier";

    UITableViewCell *cell = [tableView1 dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

        UIStepper *stepper = [[UIStepper alloc] initWithFrame:(CGRect){{40, 40}, 20, 20}];
    [stepper addTarget:self action:@selector(stepperTapped:) forControlEvents:UIControlEventValueChanged];
    stepper.tag = indexPath.row;
    stepper.stepValue = 1;
    stepper.continuous = YES;
    stepper.minimumValue = 0;
    stepper.maximumValue = 10;
    [cell.contentView addSubview:stepper];
    }

 return cell;
}