Hi
I basically want to define an XML string in my header ie:
#define kXMLString "<?xml version=\"1.0\" encoding=\"utf-8\"?><xml>%@</xml>"
In in my code I then want to replace the placeholders ie:
NSString *xmlpMsg = [NSString stringWithFormat:kXMLString, @"value"];
However this gives me warnings/errors. What's the best way to go about this?