iphone - TBXML 将复杂的 xml 解析为数组

标签 iphone objective-c cocoa-touch ios ios4

我有一个 xml 响应,需要将其设置为数组。问题是我需要访问每个元素并将其存储在数组中,以便我可以将其用于表格 View 。

<?xml version="1.0" encoding="UTF-8"?>
<Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.2sms.com/2.0/schema/0310_ResponseReportStandard.xsd" Version="1.0">
    <Error>
        <ErrorCode>00</ErrorCode>
        <ErrorReason>OK</ErrorReason>
    </Error>
    <ResponseData>
        <Identification>
            <UserID><a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="78121716190c1019165608111613384a0b150b561b1715" rel="noreferrer noopener nofollow">[email protected]</a></UserID>
        </Identification>
        <Result>2 records were returned</Result>
        <Detail>
            <ReportTitle>Message Summary: Today</ReportTitle>
            <Record>
                <Destination>447790686158</Destination>
                <Status>WithNetwork</Status>
                <GUID><![CDATA[2011-03-22T10:54:22.097Z]]></GUID>
                <DateSubmitted>2011-03-22T10:54:22.097</DateSubmitted>
                <DateToSend></DateToSend>
                <DateSent>2011-03-22T10:54:22.533</DateSent>
                <DateReceived></DateReceived>
                <Message><![CDATA[Yet again another test]]></Message>
                <ID>2011-03-22 10:54:22.250HIHIIOJTFVETW85TS</ID>
            </Record>
            <Record>
                <Destination>447790686158</Destination>
                <Status>SUCCESS</Status>
                <GUID><![CDATA[2011-03-22T10:50:40.064Z]]></GUID>
                <DateSubmitted>2011-03-22T10:50:40.063</DateSubmitted>
                <DateToSend></DateToSend>
                <DateSent>2011-03-22T10:50:42.473</DateSent>
                <DateReceived>2011-03-22T10:50:54.570</DateReceived>
                <Message><![CDATA[This is a test]]></Message>
                <ID>2011-03-22 10:50:40.210DRUDVMCEZGETW85TS</ID>
            </Record>
            <ReportPage ReportID="775797" ItemsPerPage="25" Page="1" TotalItems="2" />
        </Detail>
    </ResponseData>
</Response>

我已经初始化了 TBXML 对象,但无法弄清楚如何获取任何重复出现的信息,我知道它需要某种循环,但我对 Objective-C 还很陌生,所以它证明是一个挑战。

我需要获取<destination> , <status>, <datesent>, <message>来自 XML。最多可以有 25 条记录......

希望有人能帮助我解决这一整天的问题!

最佳答案

我最近做了类似的事情,你可以很快适应,我的 XML 是:

<?xml version="1.0" encoding="ISO-8859-1"?>
<agencies>
    <agency>
        <name>Agency 1 name</name>
        <addressFirstLine>Immeuble XYZ<addressFirstLine>
        <addressSecondLine>rue de la republique</addressSecondLine>
        <addressThirdLine>69007 Lyon</addressThirdLine>
        <telNumber>01 23 45 67 89</telNumber>
    </agency>
    <agency>
        <name>Agency 2 name</name>
        <addressFirstLine>Immeuble ABC<addressFirstLine>
        <addressSecondLine>rue de la republique</addressSecondLine>
        <addressThirdLine>69007 Lyon</addressThirdLine>
        <telNumber>01 23 45 67 89</telNumber>
    </agency>
</agencies>

我用来解析此代码的代码(在我的 NSArray 中调用 agencies 获取结果):

    TBXML *tbxml = [[TBXML tbxmlWithXMLFile:yourXmlFile retain];
    TBXMLElement *rootXMLElement = tbxml.rootXMLElement;

    if (rootXMLElement) {
        self.agencies = [self traverseElement:rootXMLElement];
        [delegate managerDidReceiveData];
    }

    // release resources
    [tbxml release];

以及我在数组中转换的功能:

- (NSArray *)traverseElement:(TBXMLElement *)element {

    NSMutableArray *tmpAgencies = [[NSMutableArray alloc] init];

    TBXMLElement *agenciesXmlElement = element->firstChild;
    TBXMLElement *agencyXmlElement;

    do {

        // if the element has child elements, process them
        if ((agencyXmlElement = agenciesXmlElement->firstChild)) {

            NSMutableDictionary *tmpAgency = [[NSMutableDictionary alloc] init];

            do {
                [tmpAgency setValue:[TBXML textForElement:agencyXmlElement] forKey:[TBXML elementName:agencyXmlElement]];

            // Obtain next sibling element
            } while ((agencyXmlElement = agencyXmlElement->nextSibling));

            [tmpAgencies addObject:tmpAgency];
            [tmpAgency release];
        }

    // Obtain next sibling element
    } while ((agenciesXmlElement = agenciesXmlElement->nextSibling));

    return tmpAgencies;
}

此函数将返回一个数组,其中包含代表您的 RecordsNSDictionary 对象。 NSDictionary 使用起来很简单,要获取属性,您可以使用 [yourDictionary objectForKey:yourXmlNode]。该文档在这里:NSDictionary .

关于iphone - TBXML 将复杂的 xml 解析为数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5393433/

相关文章:

ios - PHFetchResult 获取所有照片并按日期排序不一致

cocoa-touch - 即使使用对它的间接 __block 引用,我似乎仍将 self 保留在 block 内,这可能是将该 block 复制到堆的原因吗?

iphone - arc 的核心图内存消耗问题

ios - 从 Json 向 NSObject 存储值

iphone - Storyboard中标签栏的菜单

ios - Paypal 沙盒帐户扣除未反射(reflect)在帐户 objective-c 中

iphone - MkMapView setRegion 动画可防止注释 View 上的触摸事件

ios - 警告 :-Presenting view controllers on detached view controllers is discouraged

iphone - 如何通过点击任意位置来关闭数字键盘

iPhone、XCode 和源代码控制