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

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

我在KissXML中找不到任何选项来创建CDATA部分。仅将带有CDATA内容的字符串添加为文本将导致转义特殊字符,例如。谁能给我一个使用KissXML编写CDATA的提示吗?

最佳答案

即使the solution by @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中获得。

关于objective-c - 如何用KissXML编写CDATA?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11773890/

10-12 04:32