1

I want to parse some complected XML files, so I have plan to used TouchXML library (code)

I used latest version of XCode iOS 5 in ARC environment. But my project already working in non-ARC environment. How do I convert TouchXML classes in non-ARC environment and those should be work in iOS 5. How do I convert it in iOS 5?

Gajendra K Chauhan
  • 3,387
  • 7
  • 40
  • 55
Tirth
  • 7,801
  • 9
  • 55
  • 88

3 Answers3

3

With iOS5 you don't have to use ARC.

If you use ARC then use the ARC branch.

If you don't use ARC then use the main branch.

ader
  • 5,403
  • 1
  • 21
  • 26
0

You can download non-ARC version of Touch XML here. https://github.com/TouchCode/TouchXML

Shmidt
  • 16,436
  • 18
  • 88
  • 136
  • yes this link file i using but it gave me 43 error one of the in that is “ARC forbids explicit message send to ‘autorelease’” and “autolrelease is unavailable…” and other on the line "_node->_private = self" is "Imlicit conversion of an Objective-C pointer to 'void' is disallowed with ARC – Tirth Dec 20 '11 at 10:37
0

I was also using TouchXML until I discovered RaptureXML. If you're not actually writing to XML and are just parsing and consuming, Rapture is much more lightweight.

Echilon
  • 10,064
  • 33
  • 131
  • 217