iOS XML writer class

后端 未结 4 1326
悲&欢浪女
悲&欢浪女 2021-01-12 08:38

I want to create a game, that will use a level system. So i want to store my levels and to be able to change them during the game (to save the state). So i decided to use XM

4条回答
  •  别那么骄傲
    2021-01-12 09:27

    You can use the C libary libxml2 to read and write XML. Here's a quick intro: Cocoa Samurai: Getting Some XML Love with libXML2.

    However, have you considered using CoreData or implementing the NSCoding protocol? NSCoding would be easier to add to existing classes.

提交回复
热议问题