tags:

views:

114

answers:

1

Hi,

How can one write CDATA block in XML file and save it to a file in cocoa.

+1  A: 

To create a node containing CDATA encoded text, use method initWithKind:options: on NSXMLNode.

NSXMLNode *cdataNode = [[NSXMLNode alloc] initWithKind:NSXMLTextKind  options:NSXMLNodeIsCDATA];
[cdataNode setStringValue:@"<some text>"];

And to write xml data to a file:

NSData *xmlData = [xmlDoc XMLDataWithOptions:NSXMLNodePrettyPrint];
[xmlData writeToFile:fileName atomically:YES];
Lachlan Roche
Hi, Thanks for your help. It worked out.
iSight