I am developing an application. In that I am getting 500 to 600 questions via xml. But if I parse the total file at one time it takes a lot of time.
So I want to parse the xml file part by part to save the time duration.That means first I parse the xml file for first three questions and after showing those three , I can do the parsing for next three ones and so on.
But how can I stop the parsing after getting the three questions ?
If anybody knows any other approach to do the parsing fast then please tell me. Btw I am using TBXML
for parsing.