nsxmlparser Questions

4

I am using NSXmlParser to parse through an rss feed. All is working well so far. I'm anticipating the rss feed will eventually contains dozens/hundreds of posts. My current solution is reading th...
Bantam asked 3/7, 2012 at 19:1

1

Solved

When I declare appDelegate interface as follows in order to set NSXMLParserDelegate, I receive some warnings from other views that are using [[UIApplication sharedApplication] delegate]; @interfac...
Ylangylang asked 21/6, 2012 at 21:45

2

Solved

The basic problem I'm working on is using the NSStream classes to parse incoming incremental XML data. The data is never a complete XML Document, but I want to receive and process it in incremental...
Sarcasm asked 27/5, 2012 at 22:1

3

Solved

I am calling a web service as below: -(void)verifyEmailAndPasswordWebservices { NSString *MD5Password = [ self MD5]; NSLog(@"text field password %@",txt_Password.text); NSLog(@"converted passw...
Traveler asked 5/9, 2011 at 7:11

6

Solved

I downloaded a Wikipedia dump and I want to convert the wiki format into my object format. Is there a wiki parser available that converts the object into XML?
Th asked 8/10, 2010 at 6:2

4

Solved

I have the following code that leaks. Instruments says that it is the rssParser object that is leaking. I "refresh" the XML feed and it runs the block and it leaks.... file.h @interface TestAppDe...
Diffusive asked 21/10, 2009 at 5:46

2

Solved

I'm trying to create an NSXMLParser and call its delegate methods. On setting the delegate to self (2nd line below) I get a warning Sending 'XMLParserViewController *' to a parameter of incompatibl...
Anitaanitra asked 26/5, 2011 at 15:39

2

Solved

I am creating an iOS app that needs to get some data from a web page. My first though was to use NSXMLParser initWithContentsOfURL: and parse the HTML with the NSXMLParser delegate. However this ap...
Cymophane asked 22/8, 2010 at 13:22

5

Solved

I have a books app with a UISearchBar, where the user types any book name and gets search results (from ext API call) below as he types. I am using a singleton variable in my app called retrievedA...
Reprobate asked 27/2, 2011 at 12:36

1

Solved

I'm using a class written by a blogger (http://troybrant.net/blog/) that takes an XML string and spits out a NSDictionary. It's beautiful...works perfectly, except I end up with a weird configura...
Ethnology asked 25/2, 2011 at 16:26

1

I need to parse a local xml file which is in my resource folder when a UIButton is pressed. I know how to parse an XML file from the web. Now how can i display the xml content which is in my resour...
Aldos asked 7/2, 2011 at 5:47

3

Solved

I have an XML like this <IS> <Value> <Signature>-804</Signature> <Amount>139</Amount> </Value> <Value> <Signature>-845</Signature>...
Add asked 16/1, 2011 at 13:26

1

Solved

i read pdf files and also displayed, the code is like this: - (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx { NSLog(@"the layer height %d, %d,%d ,%d",layer.bounds.size.width,la...
Trinidad asked 1/12, 2010 at 6:6

3

Solved

Ok, I am back on this task. I have my XML properly download from my webserver with a URL pointing to the server's file, however, when I detect the network is 'unreachable' I simply point the URL to...
Exude asked 22/10, 2009 at 3:30

1

Solved

I'm working with NSXMLParser that parses a xml document. You have to set the delegate which we would be called every time the parser finds an element. The examples I've looked at all set the delega...
Glop asked 13/10, 2010 at 13:59

2

Solved

I use an NSXMLParser to parse YouTube's API and I get all the content I want and put it into a class called Video. When I am writing to the class from inside parserDidEndElement and I end that vide...
Chessy asked 12/9, 2010 at 23:22

1

Solved

I've been searching for about two hours now trying to find out what this error is and how to solve it. Apple's documents gladly says NSXMLParserAttributeNotStartedError Attribute is not started...
Puddling asked 2/8, 2010 at 13:11

7

Solved

I've recently been playing with code for an iPhone app to parse XML. Sticking to Cocoa, I decided to go with the NSXMLParser class. The app will be responsible for parsing 10,000+ "computers", all ...
Hermy asked 22/1, 2010 at 15:35

2

Solved

I'm parsing an RSS feed with NSXMLParser and it's working fine for the title and other strings but one of the elements is an image thats like <!CDATA <a href="http:image..etc> How do ...
Dunker asked 8/7, 2009 at 1:55

3

Solved

I just ran into this one and couldn't seem to get any clear answer from the documentation. Im retrieving some XML through a HTTPS connection. I do all sorts of authentication etc. so I have a set ...
Monitorial asked 3/12, 2009 at 16:13

1

I have an XML file that uses internally-declared entities. For example: <?xml version="1.0" encoding="UTF-8"?> ... <!ENTITY my_symbol "my symbol value"> ... <my_element> &lt...
Crissman asked 9/10, 2009 at 0:27

1

Solved

NSXMLParser has three types of init. -> init -> initWith Data -> initWithContents of URL => But my xml file is stored at Application's Document directory, so how to parse a file which is stor...
Diego asked 24/8, 2009 at 19:57

© 2022 - 2024 — McMap. All rights reserved.