Is there any external library using which one can edit and save XML files for an iPhone application?
相关问题
- Illegal to have multiple roots (start tag in epilo
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- Newtonsoft DeserializeXNode expands internal array
相关文章
- Creating XML Elements without namespace declaratio
- Get Attribute Value From Simple XML Using JQuery /
- Could I create “Call” button in HTML 5 IPhone appl
- Unable to process app at this time due to a genera
- How do you detect key up / key down events from a
- “Storyboard.storyboard” could not be opened
- Directly signing an Office Word document using XML
- Open iOS 11 Files app via URL Scheme or some other
A rather good way to handle XML on the iPhone is using the KissXML library hosted at http://code.google.com/p/kissxml
Using a DDXMLDocument object will allow you to get the data with
- (NSData *)XMLData
You can write NSData easily to a file using
writeToURL:atomically:
orwriteToFile:atomically:
as described in the Apple documentation