gpt4 book ai didi

iphone - 在 iphone/xcode SDK 上遍历 TBXML 有帮助吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:55:46 25 4
gpt4 key购买 nike

我有一个 xml 文件,我正在努力遍历它。我会从一开始就告诉你我是 xcode 的新手。我尝试在这里遵循另一个指南:

iPhone TBXML Looping And Parsing Data但出于某种原因,它似乎对我不起作用。

这是我的 XML 文件:

<Locations action="Request" version="1.0">
<location>
<CompanyID>44502</CompanyID>
<CompanyName>Holiday Inn</CompanyName>
<Distance>3.58km/2.23miles</Distance>
<tabs>
<tab>General Information</tab>
<tab>Add Review</tab>
</tabs>
<Address>
<Address1>Holiday Inn Reading - South</Address1>
<Address2>500 Basingstoke Road</Address2>
<Address3/>
<PostTown>Reading</PostTown>
<County/>
<PostCode>RG2 0SL</PostCode>
</Address>
</location>
</Locations>

我正在尝试使用 TBXML 遍历它以获取每个项目(我设法用一个项目做到了,但无法循环通过)。

.h 文件是:

@interface LoadXML : UIViewController {

IBOutlet UITableView *tblLoadXML;
NSMutableArray *records;
}
@property(nonatomic,retain)NSMutableArray *records;

-(void)loadRecords:(NSString *)records;
-(void)traverseElement:(TBXMLElement *)element;

@end

但是,我在这句话中遇到了 2 个错误:TBXMLElement 之前的“Expected a type and Expected ')'”。

我的 .M 文件包含以下内容:

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

static NSString *CellIdentifier = @"Cell";

UITableViewCell *Cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (Cell == nil) {
Cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}


Cell.text = [records objectAtIndex:indexPath.row];

}

- (void)loadRecords:(NSString *)records {
NSString *someXML = @"http://de0937/directenquirieswebapplicationv3.0/mobilesearch/what/0/49424/342/0/Reading/Hotels%20and%20Inns/0/0/0/0/0/search.aspx";
TBXML *tbxml = [[TBXML tbxmlWithURL:[NSURL URLWithString:someXML]] retain];

records = [NSMutableArray array];
[records retain];

if (tbxml.rootXMLElement)
[self traverseElement:tbxml.rootXMLElement];
[tbxml release];
}

- (void) traverseElement:(TBXMLElement *)element {
do {
if (element->firstChild)
[self traverseElement:element->firstChild];

if ([[TBXML elementName:element] isEqualToString:@"location"]) {
TBXMLElement *name = [TBXML childElementNamed:@"CompanyName" parentElement:element];
TBXMLElement *distance = [TBXML childElementNamed:@"Distance" parentElement:element];

TBXMLElement *id = [TBXML childElementNamed:@"ID" parentElement:element];

[records addObject:[NSArray arrayWithObjects:
[TBXML textForElement:name],
[TBXML textForElement:distance],
[TBXML textForElement:id],nil]];
}
} while ((element = element->nextSibling));
}

我可能正在做一些非常愚蠢的事情,但这让我发疯了!任何帮助将不胜感激。

--- 这是我以前的,它工作得很好,但只适用于一个记录。基本上我想做的是转换它,这样我就可以将每个项目作为一个数组并随意将其拉出:

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

static NSString *CellIdentifier = @"Cell";

UITableViewCell *Cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (Cell == nil) {
Cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}


TBXML * XML = [[TBXML tbxmlWithURL:[NSURL URLWithString:@"http://www.tomstest.info/ios/results.xml"]] retain];

TBXMLElement *rootXML = XML.rootXMLElement;
TBXMLElement *results = [TBXML childElementNamed:@"location" parentElement:rootXML];
TBXMLElement *WOEID = [TBXML childElementNamed:@"CompanyName" parentElement:results];
NSString *woeid = [TBXML textForElement:WOEID];


Cell.text = woeid;
return Cell;

}

最佳答案

根据错误,您是否从 .h 文件中 #including TBXML.h?或者,您可以在 .h 文件中 @class TBXMLElement; 并在 .m 文件中导入。

关于iphone - 在 iphone/xcode SDK 上遍历 TBXML 有帮助吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7107943/

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