i am using xml parser to read data from xml file. In this file it is having so many records.but i want to read data(for example in this file i am having 200 records but in the table view at first it should load 10 records after that i will keep a button to click and after clicking only it should load the next 10 records it should parse from XML file).Is there any solution for this.help me in solving this problem.
Share
I think ,you will have to read XML file in one shot, So what you can do ….
You could use two array .. One for holding 200 record and other for holding 10 then 20 and so on …
And your second array will be used by your UITableView …
When you add more items in your second array , Just call
reloadDatafunction ofUITableViewHere is the useful SO post
What steps should be taken to convert my XML into Core Data objects?
xCode: convert XML file to CoreData model