0

我想知道是否可以在 iOS 中以这种方式操作 XML。

  1. 从无到有创建 XML。
  2. 按顺序插入自定义标签和信息。

例子:

  • 在内存中创建 xml,如数组或字典
  • 插入标签<test></test>
  • <field1>some</field1>在里面插入标签<test />
  • <field2>some</field2>在之后插入标签<field1 />
  • <field12>some</field>在里面插入标签<field2 />
  • 关闭 xml 并保存到 NSDocuments

谢谢

4

1 回答 1

1

You can use plist files which are essentially xmls. You can directly write/read plist files to/from NSArray or NSDictionary.

Check the Plist Programming Guide

于 2013-01-25T11:46:17.090 回答