Hi all.
i am making us eof the NSXMLParser in my iPhone app.
What i am facing now is that in my xml file i am having characters like
<items>
<item>my favourites</item>
<item>BOOKS & DVDs</item>
<item>itemNameTM products</item>
</items>
issue is that the foundCharacters method is returning me "BOOKS" , "&", "DVDs" in separately.
Actually it should return :BOOKS & DVDs" as a single string, isnt it?
the problem is there whereever i use "&", "trademark symbol" etc....
Its giving "my favourites" as a single string, means the problem is not because of whitespaces.
I tried appending all the strings that i got using appendString method of NSString class.
But the resulting string is displayed as "Books....." .
Its not because of the space limitation, i think the string is appending some miscs...
Please help me...
I got stuck up with my application...
i am making us eof the NSXMLParser in my iPhone app.
What i am facing now is that in my xml file i am having characters like
<items>
<item>my favourites</item>
<item>BOOKS & DVDs</item>
<item>itemNameTM products</item>
</items>
issue is that the foundCharacters method is returning me "BOOKS" , "&", "DVDs" in separately.
Actually it should return :BOOKS & DVDs" as a single string, isnt it?
the problem is there whereever i use "&", "trademark symbol" etc....
Its giving "my favourites" as a single string, means the problem is not because of whitespaces.
I tried appending all the strings that i got using appendString method of NSString class.
But the resulting string is displayed as "Books....." .
Its not because of the space limitation, i think the string is appending some miscs...
Please help me...
I got stuck up with my application...