Hello,
I am quite new to the iphone development, I am using xml parsing to parse contents of a feed
this feed contains this line
<enclosure url="http://www.abc.com/wp-content/uploads/2010/01/abc.jpg" length="64690" type="image/jpg" />
no I want to extract http://www.abc.com/wp-content/uploads/2010/01/abc.jpg
XML structure is like this
<item>
<title>ABC</title>
<description>asgafgfafdasf</description>
<enclosure url="http://www.abc.com/wp-content/uploads/2010/01/abc.jpg" length="64690" type="image/jpg" />
</item>
I got values corresponding to description and tile
but unable to put down logic to parse that image url
CAn any bosy shed some light on this.
Thanx in advance