I am using MWFeedParser to download feeds in my app. So far it's working fine - however, I donnot know how to retrive image from feed and view in the detailed article??
Right now MWFeedParser only lets you get particular things from the feed
MWFeedItem:
item.title (NSString)
item.link (NSString)
item.date (NSDate)
item.updated (NSDate)
item.summary (NSString)
item.content (NSString)
item.enclosures (NSArray of NSDictionary with keys url, type and length)
item.identifier (NSString)
In most cases the images are in the form of links inside item.content.
So you will have to parse out the links on your own and download the images for them.
I started using that parser but since it didnt do images already I ended up making my own using AFNetworking, SDWebImage and using a JSON feed on Wordpress (but that requires your feed to be JSON instead of RSS which the format can be different depending on the site/feed)