I have been reading through heaps of the ios docs from Apple, and almost every bit of code to do with xml on there requires either creating a file with xml data in it or receiving xml over a connection then altering it.
I would like to know if there is a way to just create some xml.. maybe in a string, then convert it into a NSData object.. I know how to pass a NSString into a NSData object.. thats not so much of a big deal.. the painful part at the moment is getting some clear concise examples on how to create my own xml without all the other stuff that Apple says you need.. I.e. file or return data.
I currently have no code.. what I will likely do is create a method with some parameters that can receive some information and then pass them in to hopefully create a nice xml string/data object.