↧
Answer by sosborn for UITableView and two RSS feeds
You are overwriting the "stories" array every time you parse the XML (I assume that you are using the stores array in your tableview datasource). You should take a look at NSMutableArray's addObject...
View ArticleUITableView and two RSS feeds
I'm trying to parse two RSS feeds at the same time using a for loop, but the thing is, when the first RSS feed is parsed completely and allocated in the table view, parsing the second feed causes the...
View Article