I have created an RSS parser using NSXMLParser class. The feed has an item count of 20. I would like to know how to fetch the next 20 items from the feed?
If I add the same url to google reader it fetches lot of items and keeps continuing as I scroll down. is there any particular way to fetch next 20 items from the RSS?
consider this feed of dilbert blog for example.
feed://feeds.feedburner.com/typepad/ihdT?format=xml
This is out of scope for the RSS standard.
Some smaller sites that generate their feeds on demand might let you parameterize the number of items by appending ?maxitems=50, and maybe even let you specify the starting position. Most of the world however rely on static feeds that can be cached and propagated and will likely never provide what you want.
Google Reader maintains their own database of items, from the first time someone subscribed to the given feed through them. They could conceivably make this available programmatically, but for now it’s closed.