gpt4 book ai didi

objective-c - 在 NSXMLNode 中追加字符串

转载 作者:行者123 更新时间:2023-12-03 17:08:11 26 4
gpt4 key购买 nike

当我在遇到 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];

最佳答案

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

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

NSXMLElement *element;

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

[element addChild: node];

关于objective-c - 在 NSXMLNode 中追加字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2385160/

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