user1400581
user1400581

Reputation: 69

How to improve NSXMLParser performance

I am developing an application where I use NSXMLParser to parse an XML file. At the moment this takes 8 seconds. But my requirement is to do the parsing within 5 seconds. How can I improve the performance of my parser?

Upvotes: 1

Views: 472

Answers (1)

Woody
Woody

Reputation: 5130

Either:

  1. use a faster phone
  2. Use a smaller XML
  3. Use a faster parser: Benchmarks on XML processors

I would say from a simple reading TBXML seems worth checking out

Upvotes: 1

Related Questions