I'm trying to create a XML string which should contain solo tags (ie. tag without separate closing tags) I am able to create normal xml tags like
<tagname attribute=attributevalue></tagname>
using the code
NSXMLElement *childElement=[[NSXMLElement alloc] initWithName:childName];
childElement.stringValue=childValue;
[childElement addAttribute:[NSXMLNode attributeWithName:attributeName stringValue:attributeValue]];
[self.currentNode addChild:[childElement copy]];
but I need it like this
<tagname attributename=attributevalue />
Before saving your file, when creating NSData, add this option : NSXMLNodeCompactEmptyElement
Like this :
Then serialize your file :
Reference : NSXMLNode class reference
Section Constants