-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi all,
I have a problem in parsing xml from google api, the api xml looks like this
.......
Now the problem is that first of all, the tags are different, like first parent tag name is "abc" and second parent tag is "efg", further more the inner tags are different as well.
i…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am usin the nsxmlparser and am wondering how I can parse ISO-8859-1 correctly into an NSString.
Currently, I am getting results w/ Â for two-byte characters.
The XML I'm using (not created by me) starts with <?xml version="1.0" encoding="ISO-8859-1"?>
Here are the basic calls I'm using…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
So i'm making small program and it download ziped XML database file that is ~30 MB size (unziped). As I understand there is only way with such big files on iPhone, it's to use NSXMLParser. But that file is encoded with windows-1257 format and NSXMLParser does not eat files like that. What can I do…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
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 which contain 6 other strings of information. For my test, I've verified that the XML is around…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am building an app that parses an rss feed. In the app there are two different types of feeds with different names for the elements in the feed, so I have created an NSXMLParser NSObject that takes the name of the elements of each feed before parsing. Here is my code:
NewsFeedParser.h
#import…
>>> More