0

私は次のコードセットを持っています:

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

    static NSString *CellIdentifier = @"customCell";

    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        NSArray *nibObjs = [[NSBundle mainBundle] loadNibNamed:@"CustomCellView" owner:nil options:nil];
        //cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

        for(id currentObj in nibObjs)
        {
            if([currentObj isKindOfClass:[CustomCell class]])
            {
                cell = (CustomCell *)currentObj;
            }

        }
    }

    AssessmentDetail * anAssess = [module.assessmentDetails4 objectAtIndex:indexPath.row];
    [[cell labelAssessment] setText:anAssess.assessmentName4];
    return cell;
}

カスタムセルにはUISlider. 私がやりたいことは、ボタンを使用して各行から各 UISlider の値を取得し、合計値を取得できるようにすることです。

私はこれを行うことを考えましたが、そこからどこへ行くべきか確信が持てません:

- (IBAction) calculateTotal:(id)sender {

    static NSString *CellIdentifier = @"customCell";

    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

}

助けてくれてありがとう。

4

1 に答える 1

1

UITableView のサブビューを循環します。

- (IBAction) calculateTotal:(id)sender {
    NSArray *subViews = [myTableView subviews];
    float total;

    for (int i = 0; i < subViews.count; i++)
    {
         id obj = [subViews objectAtIndex:i];
         if ([obj isKindOfClass:[CustomCell class]])
         {
              total += [[obj getMySlider] getValue];
         }
    }

    // do something with total
}
于 2011-05-23T01:13:34.550 に答える