gpt4 book ai didi

iphone TBXML xml解析

转载 作者:行者123 更新时间:2023-11-29 11:13:28 25 4
gpt4 key购买 nike

我在我的 iphone 应用程序中使用 TBXML。我有一个类似下一个的 xml:

<detail>
<title>My title</title>
<subs>
<sub>subCategory1</sub>
<sub>subCategory2</sub>
<sub>subCategory3</sub>
</subs>
</detail>

我可以成功获得标题,而且只有第一个子类别。我用于获取子类别的代码如下:

NSMuttableArray *divs = [[NSMuttableArray] initWithCapacity:3];
TBXMLElement *subsElement = [TBXML childElementNamed:@"subs" parentElement:currentElement];
TBXMLElement *subElement = [TBXML childElementNamed:@"sub" parentElement:subsElement];
do {
[divs addObject:[TBXML textForElement:subElement]];
NSLog(@"%@ , %@", @"Got one subCategory " , divs.lastObject);
} while ((subsElement = subsElement->nextSibling));

最佳答案

您的 where 语句中似乎有错字。我相信您打算使用 subElement 而不是 subsElement。所以你的代码应该是:

while ((subElement = subElement->nextSibling));

关于iphone TBXML xml解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10508526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com