在NSXMLNode中追加字符串

时间:2010-03-05 07:25:09

标签: objective-c cocoa nsxmlparser

当遇到setStringValue: mCurrentString时调用方法</Text>时,已分离已附加到元素的子元素。任何人都能说明为什么会发生这种情况。

示例XML文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0">
    <Page Id="123-234-345-456-567">
        <Word/>
        <Text Id="234-345-456-567-678" Left="120.789" Top="120.234657" Width="300.2390" Height="50.00">
            <Content>
            <![CDATA[<FlowDocument FontFamily="Helvetica" FontSize="24" Foreground="#FFFFFF00" TextAlignment="Left" PagePadding="5,0,5,0" AllowDrop="True" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"><Paragraph><Run FontFamily="Helvetica" FontSize="24" Foreground="FF00B38D" xml:lang="en-gb">This is for Testing purpose</Run></Paragraph>]]></Content>
            <Stroke Color="#FF00B300" Width="10"/>
        </Text>
        <Image Id="345-456-567-678-789" Left="200.345" Top="350.678" Width="200.00" Height="200.00">
            <Source>Bear.png</Source>
        </Image>
    </Page>  
    <Page Id="345-897-123-756-098" Left="100.90" Top="200.098" Width="200.098" Height="50.09">
        <Image Id="756-098-978-685-298" Left="12098" Top="340.87" Right="109.78" Height="100.987">
            <Source>Flower.png</Source>
        </Image>
    </Page>                  
</Test>

这是我用于NSXMLElement对象的方法:

// mCurrentString is the string that obtained through delegate method. 
[mCurrentElement setStringValue: mCurrentString];

1 个答案:

答案 0 :(得分:2)

方法setString将使用指定的字符串值替换元素内容。

要将文本节点附加到已有子节点的元素,请创建种类NSXMLTextKind的节点,然后将其附加到方法addChild的元素。

NSXMLElement *element;

NSXMLNode *node = [[NSXMLNode alloc] initWithKind: NSXMLTextKind];
[node setStringValue: @"lorem ipsum"];    

[element addChild: node];