Iam developing one applcation.In that,in my xml file having the threetags with same name with different data.So how to differentiate that data.please inform me how to handle this one.
Iam developing one applcation.In that,in my xml file having the threetags with same name
Share
If you know the sequence of tags coming then u can declare an int as a counter variable in following method.
For eg: when first time tag is visited set cnt = 1, second time cnt = 2, and third time cnt = 3.
Then using the value of counter save the data to 3 different NSMutableArray in the following method:
I hope this will solve your problem