2

我正在为需要创建 XML 文档的 iOS 创建应用程序。我通过 KissXML 做到这一点。部分 XML 看起来像

<ISIN><![CDATA[12345678]]></ISIN>

我在 KissXML 中找不到任何选项来创建 CDATA 部分。简单地添加一个带有 CDATA 内容的字符串作为文本将导致转义特殊字符,如 < 和 >。谁能给我一个关于如何用 KissXML 编写 CDATA 的提示?

4

2 回答 2

1

尽管@moq 的解决方案很丑陋,但它确实有效。我已经清理了字符串创建代码并将其添加到一个类别中。

DDXMLNode+CDATA.h:

#import <Foundation/Foundation.h>
#import "DDXMLNode.h"

@interface DDXMLNode (CDATA)

/**
 Creates a new XML element with an inner CDATA block
 <name><![CDATA[string]]></name>
 */
+ (id)cdataElementWithName:(NSString *)name stringValue:(NSString *)string;

@end

DDXMLNode+CDATA.m:

#import "DDXMLNode+CDATA.h"
#import "DDXMLElement.h"
#import "DDXMLDocument.h"

@implementation DDXMLNode (CDATA)

+ (id)cdataElementWithName:(NSString *)name stringValue:(NSString *)string
{
    NSString* nodeString = [NSString stringWithFormat:@"<%@><![CDATA[%@]]></%@>", name, string, name];
    DDXMLElement* cdataNode = [[DDXMLDocument alloc] initWithXMLString:nodeString
                                                               options:DDXMLDocumentXMLKind
                                                                 error:nil].rootElement;
    return [cdataNode copy];
}

@end

此gist中也提供了代码。

于 2012-11-21T13:37:56.110 回答
0

我自己找到了一种解决方法——这个想法基本上是将 CDATA 伪装成一个新的 XML Doc。一些有效的代码:

+(DDXMLElement* ) createCDataNode:(NSString*)name value:(NSString*)val {

    NSMutableString* newVal = [[NSMutableString alloc] init];
    [newVal appendString:@"<"];
    [newVal appendString:name];
    [newVal appendString:@">"];
    [newVal appendString:@"<![CDATA["];
    [newVal appendString:val];
    [newVal appendString:@"]]>"];
    [newVal appendString:@"</"];
    [newVal appendString:name];
    [newVal appendString:@">"];

    DDXMLDocument* xmlDoc = [[DDXMLDocument alloc] initWithXMLString:newVal options:DDXMLDocumentXMLKind error:nil];

    return [[xmlDoc rootElement] copy];
}

天哪!这只是我认为是“肮脏的黑客”的东西。它有效,但感觉不对。我将不胜感激对此的“好”解决方案。

于 2012-08-02T12:57:41.453 回答