我正在为iOS创建一个需要创建XML文档的应用程序。我通过KissXML这样做。部分XML看起来像
<ISIN><![CDATA[12345678]]></ISIN>
我在KissXML中找不到任何创建CDATA部分的选项。只需添加带有CDATA内容的字符串作为文本将导致转义特殊字符,如&lt;和&gt;。谁能给我一个如何用KissXML写CDATA的提示?
答案 0 :(得分:1)
尽管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中找到。
答案 1 :(得分: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];
}
吉兹!这只是我认为是“肮脏的黑客”的东西。它有效,但感觉不对。我很感激这个“好”的解决方案。