1

How do i use the AFNetworking's AFXMLRequestOperation and parse the data using TBXML instead of the default NSXMLParser...looks like the alternate method XMLDocumentRequestOperationWithRequest will not work in iOS (as NSXMLDocument is not supported)

gforg
  • 263
  • 1
  • 4
  • 19

1 Answers1

2

You have to implement your own extension for TBXML, or decide not to use TBXML but KissXML that already has an extension:

https://github.com/AFNetworking/AFKissXMLRequestOperation

laucel
  • 509
  • 1
  • 5
  • 17