在UITableView中重新加载表子视图

时间:2013-03-06 05:41:38

标签: objective-c cocoa-touch uitableview

我有一个tableView,其中我添加了一个滑块作为子视图。我试着用两种方法。

方法一:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
    }

    UISlider*  theSlider =  [[[UISlider alloc] initWithFrame:CGRectMake(174,12,120,23)] autorelease];
    theSlider.maximumValue=99;
    theSlider.minimumValue=0;
    [cell.contentView addsubview:theSlider];
    return cell;
}

问题:如果我使用它,那么如果我滚动表格,滑块会重新加载&向我显示最小值而不是幻灯片值。所以我使用第二种方法。

方法2:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *CellIdentifier=[NSString stringWithFormat:@"CellIdentifier%d",indexPath.row];

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier]; 
        UISlider* theSlider =  [[[UISlider alloc] initWithFrame:CGRectMake(174,12,120,23)] autorelease];
        theSlider.maximumValue=99;
        theSlider.minimumValue=0;
        [cell addSubview:theSlider];
    }  
    return cell;
}

问题:我的视图中有一个下一个按钮。当我尝试选中它时,我想重新加载所有滑块(即将滑块值设置为最小值)。我尝试重新加载表,但我没有得到满意的结果。

3 个答案:

答案 0 :(得分:2)

当用户更改滑块时,您必须跟踪其最后一个值。然后在cellForRowAtIndexPath:中,您必须将滑块的值设置为上次保存的值。

添加实例变量以保存滑块的值:

NSMutableDictionary *_sliderValues; // don't forget to initialize this variable

// Helper method to located the slider in the cell
- (UISlider *)findSlider:(UIView *)view {
    for (UIView *subview in view.subviews) {
        if ([subview isKindOfClass:[UISlider class]]) {
            return (UISlider *)subview;
        } else {
            UISlider *slider = [self findSlider:subview];
            if (slider) {
                return slider;
            }
    }

    return nil;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *CellIdentifier = @"SliderCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier]; 
        UISlider *theSlider = [[[UISlider alloc] initWithFrame:CGRectMake(174,12,120,23)] autorelease];
        theSlider.maximumValue = 99;
        theSlider.minimumValue = 0;
        [theSlider addTarget:self action:@selector(sliderChanged:) forControlEvents: UIControlEventValueChanged];
        [cell.contentView addSubview:theSlider];
    }

    UISlider *slider = [self findSlider:cell];
    slider.tag = indexPath.row
    slider.value = [_sliderValue[@(slider.tag)] floatValue];

    return cell;
}

// Process changes to a slider
- (void)sliderChanged:(UISlider *)slider {
    NSInteger tag = slider.tag;
    [_sliderValues setObject:@(slider.value) forKey:@(tag)];
}

// called when the Next button is tapped
- (void)nextAction {
    [_sliderValues removeAllObjects];
    [self.tableView reloadData];
}

注意:尚未编译或运行。它可能有拼写错误。

答案 1 :(得分:0)

从按钮调用确定此行,它将重新加载您查看的所有数据:

[[self mytableview] reloadData];

在这里,mytableview是您放置表视图对象的表视图的对象。

答案 2 :(得分:0)

单击下一步按钮时。检索tableview中的所有蜘蛛并将其重置为零。

for (UISlider *but in [self.view.subviews subviews]) // or use [yourtableview subviews]
    { 
        if ([but isKindOfClass:[UISlider class]]) {
            [but setValue:0.0];
        }
    }