Reputation: 19418
I want to know is it possible to cache the parsed XML data? And what about asynchronous parsing as we cache images in iPhone?
Upvotes: 0
Views: 401
Reputation: 2314
You can use a NSOperation for the purpose of asynchronous parsing. You should subclass the NSOperation and create your parser. Use an NSOperationQueue to hold NSOperation. You can refer Top paid Sample app from apple.
Upvotes: 2