1

当我遇到时调用该方法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];
4

1 回答 1

2

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

要将文本节点附加到已经有子节点的元素,请创建一个 kind 节点,NSXMLTextKind然后使用方法addChild将其附加到元素。

NSXMLElement *element;

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

[element addChild: node];
于 2010-03-12T11:25:33.533 回答