Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a very unusual problem. I am using NSXMLParser to parse XML but it is not being able to parse self closing tags! If the XML is something like "< media:something ....... / >", when I parse it and output the elementName in didStartElement: method, there's no output for the particular tag. All other tags which are not self closing are however being displayed. Any idea what is going on and what can be done to fix it?

Thanks in advance! :))

share|improve this question
1  
If devio's answer is wrong, you are going to have to post some code to show what you are doing. We are not telepathic. – JeremyP Jul 30 '10 at 7:24
M sorry well, here's the XML: <media:thumbnail width="107" height="82" url="website.tv/thumb/height-82,width-107,msid-4350691.cms"; /> Here all I want to do is grab the URL so that I can display the image. – Bangdel Jul 30 '10 at 9:14

1 Answer

Is there a space between / and > ? Remove it to read as />

share|improve this answer
Hey, thanks...but nope, there's no space... :(( Anything else that I could do..please do suggest... – Bangdel Jul 30 '10 at 7:26
Please post you XML data and code ... – Girish Kolari Jul 30 '10 at 7:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.