1

我正在搜索从这个简化的 xml 文件的 N 个标签中解析所有属性“unit1”和“unit2”,然后将它们放在 UITableView 中:

<xml>
<meta></meta>
<time1>
<product>
<value1 id="id1Time1" unit1="unit1Time1" number1="number1Time1"/>
<value2 id="id2Time1" unit2="unit2Time1" number2="number2Time1"/>
</product>
</time1>
<time2>
<product>
<value1 id="id1Time2" unit1="unit1Time2" number1="number1Time2"/>
<value2 id="id2Time2" unit2="unit2Time2" number2="number2Time2"/>
</product>
</time2>
...
<timeN>
<product>
<value1 id="id1TimeN" unit1="unit1TimeN" number1="number1TimeN"/>
<value2 id="id2TimeN" unit2="unit2TimeN" number2="number2TimeN"/>
</product>
</timeN>
</xml>

我正在使用 NSXMLParser、自我委托,并且我正在使用以下代码:

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict{
    currentElement = [elementName copy];
    if ([elementName isEqualToString:@"value1"]) {
        arrayUnit1 = [[NSMutableArray alloc] init]; 
        stringUnit1 = [attributeDict objectForKey:@"unit1"];
        [arrayUnit1 addObject:stringUnit1];
    }
    if
        ([elementName isEqualToString:@"value2"]) {
        arrayUnit2 = [[NSMutableArray alloc] init];
        stringUnit2 = [attributeDict objectForKey:@"unit2"];
        [arrayUnit2 addObject:stringUnit2];
    }
}

要使用 value1 和 value2 填充 UITableView 我正在使用:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [arrayUnit1 count]; // <--- I Know, here is the problem!
}

...

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:
                UITableViewCellStyleSubtitle reuseIdentifier:@"Cell"];
    }

    cell.textLabel.text = [NSString stringWithFormat:@"%@",[arrayUnit1 objectAtIndex:indexPath.row]];
    cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",[arrayUnit2 objectAtIndex:indexPath.row]];

    return cell;
}

好吧,解析很完美,我也可以每隔 N 个 stringValues 进行 NSLog 记录,但在我的 UITableView 中,我只能看到一行包含 arrayUnit N 的最后一个值(在本例中为 unit1TimeN 和 unit2TimeN)。那么如何用每个值填充表,我的数组的所有 N 值?也许我还需要实现 - (void)parser:(NSXMLParser *)parser didEndElement:? 谢谢!

4

2 回答 2

1

从这里删除这一行

arrayUnit1 = [[NSMutableArray alloc] init];

并在分配解析器时将其放在其他位置..这是删除数组的所有先前元素并为其分配新内存,因此您只会看到添加的最后一个元素..

于 2013-01-07T12:33:06.427 回答
0

您正在为每个解析的元素重新分配一个新数组,只需分配一次数组:

if (!arrayUnit1)
   arrayUnit1 = [[NSMutableArray alloc] init];
于 2013-01-07T12:35:46.803 回答