I have made one application which can parse the given xml file independent of its tags . It is working well and good for at list single level of xml file .I want to assign the xml values on the object.As xml can be different the class also must be generic one and the data members also . I can achieve the generic data members by using the data type id. But problem is different xml can have different number of data types. so is it possible to decide the number of data members at the run time ? (here i am loading the xml two time is it any way useful to achieve our goal?)
Share
Key-Value Coding perfectly matches your need, you can rather use NSMutableDictionary if you want something quick & simple.