Questions tagged [touchxml]

TouchXML is a lightweight replacement for Cocoa's NSXML* cluster of classes. It is based on the commonly available open source libxml2 library.

TouchXML is a lightweight replacement for Cocoa's NSXML* cluster of classes. It is based on the commonly available open source libxml2 library.

References:

110 questions
32
votes
3 answers

iPhone Development - XMLParser vs. libxml2 vs. TouchXML

I cannot find comparison of these parsing technique. Which one is most commonly used? Regards. Mustafa
Mustafa
  • 20,108
  • 39
  • 139
  • 208
18
votes
1 answer

iPhone libxml2 undefined symbols (with gdata, kissxml, touchxml, etc.)

I'm trying to use any one of the libxml based 3rd party XML parsers, but I can't because I think I have a libxml2 problem of some sort I set my other linker flags to -lxml2 and header search paths to /usr/include/libxml2 but I still get a ton of…
dougalg
  • 464
  • 3
  • 13
12
votes
3 answers

Getting the value of an Element in Cocoa using TouchXML

I am using TouchXml because of the given limitations of NSXML on the actual iPhone. Anyway, I'm just starting out with Objective-C, I come from a C# background, and felt like learning something new..anyhow.. here is my xml file...
Ta01
  • 29,282
  • 11
  • 68
  • 98
11
votes
1 answer

Warning about blocking item under version control (Xcode 4)

I just added TouchXML to my project and it's telling me that: warning: Obstructing: /**/Classes/Creation is blocking item under version control also, same thing for Tidy: warning: Obstructing: /**/Classes/Tidy is blocking item under version…
user635064
  • 6,059
  • 12
  • 52
  • 98
7
votes
3 answers

TouchXML parsing XML attributes

How do I use touchXML to parse this XML? I want to store all the attributes as key/value pairs in a dictionary.
Dan Morgan
  • 2,500
  • 4
  • 25
  • 32
5
votes
2 answers

Is this XPath query on parsing XHTML wrong? using TouchXML

I have been trying to parse a XHTML doc via TouchXML, but it always can't find any tags via XPath query. Below is the XHTML: XHTML
Jackson Tale
  • 23,820
  • 29
  • 135
  • 251
4
votes
3 answers

How do I pass arrays of values to SudzC-generated webservice classes?

I have a sudzc service class generated from a WSDL that accepts an ArrayOfInt and ArrayOfString objects as parameters. The service method signature is this: - (SoapRequest*) Search: (id ) handler filters: (NSMutableArray*)…
Jon Limjap
  • 89,838
  • 14
  • 96
  • 150
4
votes
3 answers

How to display Data from RSS Feed in Parts in Iphone Application

I am displaying RSS feeds in my table view. as there are hundred of feeds so my application takes lots of time to load them and display them i want to load just first 25 feed and display them in Table view and when User Click on More 25 application…
Nauman.Khattak
  • 631
  • 4
  • 12
  • 33
4
votes
5 answers

iPhone - does TouchXML use an undocumented APIs?

Recently I've heard that Apple is using tools to search for references to undocumented APIs and are rejecting iPhone apps from the App Store because of it. The popular Three20 framework is causing people to get rejected. I also just saw that the…
philfreo
  • 36,787
  • 25
  • 119
  • 140
3
votes
2 answers

How to parse HTML on iPhone using TouchXML or other libraries?

I have a dirty HTML code that is loaded from a foreign server (so I can't make a json file or clean the html code). My HTML's structure is like:
...
akashivskyy
  • 40,844
  • 15
  • 103
  • 113
3
votes
1 answer

parsing SOAP response with touchXML - a problem

i've another problem with obj-c: i'm trying to parse this XML : here's the case:
Mapedd
  • 662
  • 7
  • 15
3
votes
2 answers

Parsing SO RSS feed using TouchXML, no tags found

I'm trying to parse a Stack Overflow RSS feed of a specific question: https://stackoverflow.com/feeds/question/2110875 For this I'm using the TouchXML library. There seems to be a problem in the following code: CXMLDocument *parser = [[CXMLDocument…
Rengers
  • 13,246
  • 1
  • 32
  • 49
3
votes
4 answers

Cannot read XML File

got a little problem with receiving the contents of a xml file (using TouchXML). My first query works very well, looks something like this: NSString *url = [NSString stringWithFormat:STATION_ID, latitude, longtitude]; CXMLDocument *rssParser =…
choise
  • 22,226
  • 19
  • 72
  • 127
3
votes
2 answers

Strange error with initWithContentsOfURL

I'm currently working on reading some XML from an external API. The following code works fine: NSError *error = nil; NSString *xmlString = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error]; However, I wanted…
Rich
  • 553
  • 1
  • 10
  • 20
3
votes
2 answers

Issue with XPath with touchXML in ios

I am trying to parse a xhtml file in ios using touchXML. I am trying it for first time. I have following format in XHTML:
Kapil Choubisa
  • 4,970
  • 8
  • 59
  • 99
1
2 3 4 5 6 7 8