UITableView数据插入

时间:2011-03-21 06:57:35

标签: ios objective-c iphone xcode uitableview

我在uitableview上有问题, 我在分组表中选了3个部分, 使用indexPath.section对每个部分插入的数据都很好,但第3部分填充了第1和第2部分数据, 如何删除该数据以及如何填充我自己的数据意味着单独的数据? 代码是: -

 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    if (section == 0) {

        return @"Product Details";
    }

    if (section == 1) {

        return @"Ingredients";
    }
    if (section == 2) {
        return @"My Allergies";
    }
return nil;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{

    if (indexPath.section == 0) {
        return 150;
    }   
    if (indexPath.section == 1) {
        return 100;
    }
    if (indexPath.section==2) {
        return 45;
    }


    return 0;

}
- (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];

     }
    NSMutableString *redStr1 =[[NSMutableString alloc] initWithString:@"No" ];
    NSMutableString *yellowStr1 =[[NSMutableString alloc] initWithString:@"No" ];
    NSMutableString *greenStr1 =[[NSMutableString alloc] initWithString:@"No" ];


    int a = [appDelegate.reIndex intValue];


    NSDictionary *aDict1   = [[NSDictionary alloc]init];
    aDict1 = [appDelegate.ProductArray objectAtIndex:a];

    // NSMutableString *str = [aDict1 objectForKey:@"IngredientInfo"];

    NSMutableArray *array =[aDict1 objectForKey:@"IngredientInfo1"];    
    NSMutableString *nameStr =  [[NSMutableString alloc] init];
    NSMutableString *nameClr =  [[NSMutableString alloc] init];



    for (int s=0; s<[array count]; s++) {
        NSDictionary *nameDict = [array objectAtIndex:s];
        [nameStr appendString:[nameDict objectForKey:@"Name"]];
        nameClr = [nameDict objectForKey:@"HalaStatus"];

        if ([nameClr isEqualToString:@"Red"]) {

            [redStr1 setString:@"Yes"];
        }

        if ([nameClr isEqualToString:@"Yellow"]) {
            [yellowStr1 setString:@"Yes"];
        }

        if ([nameClr isEqualToString:@"Green"]) {
            [greenStr1 setString:@"Yes"];
        }

        if (s == [array count]-1) {
            [nameStr appendFormat:@"."]; 
        }
        else {
            [nameStr appendFormat:@","];
        }

    }


if (indexPath.section == 0) 
    {

    cell.userInteractionEnabled =NO;
    imgview1 = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"images (1).jpg"] ];
    [imgview1 setFrame:CGRectMake(12, 2, 100, 145)];
    [cell addSubview:imgview1];
        [imgview1 release];

    imgview = [[UIImageView alloc]initWithFrame:CGRectMake(255,2 , 50, 45)];
    [cell addSubview:imgview];
    if ([redStr1 isEqualToString:@"Yes"]) {
        [imgview setImage:[UIImage imageNamed:@"Red.png"]];
    }
    if ([redStr1 isEqualToString:@"No"] && [yellowStr1 isEqualToString:@"Yes"] ) {
        [imgview setImage:[UIImage imageNamed:@"Yellow.png"]];
    }
    if ([redStr1 isEqualToString:@"No"] && [yellowStr1 isEqualToString:@"No"] && [greenStr1 isEqualToString:@"Yes"]) {
        [imgview setImage:[UIImage imageNamed:@"Green.png"]];
    }

    }


 if (indexPath.section == 1) {
    UITextView *textview1;
    textview1 =[[UITextView alloc]initWithFrame:CGRectMake(12, 2, 294, 96)];
    textview1.text = nameStr;
    textview1.editable =NO;
    [textview1 setFont:[UIFont systemFontOfSize:15]];
    [cell addSubview:textview1];



}


if (indexPath.section == 2) {


cell.textLabel.text = [arr objectAtIndex:indexPath.row];

}

return cell;
}

1 个答案:

答案 0 :(得分:0)

如果您有一个数组并使用cellForRowAtIndexPath:indexPath.row中进行访问,那么您将获得所有部分相同的说明三个元素。

你需要做的是在数组中的数组:

Level 1 Section 1
  Level 2 Row 1
  Level 2 Row 2
  Level 2 Row 3
Level 1 Section 2
  Level 2 Row 1
  Level 2 Row 2
Level 1 Section 3
  Level 2 Row 1
  Level 2 Row 2
  Level 2 Row 3