I have a class implementing the UITableViewDelegate and the NSXMLParserDelegate. My app is tab based. When I select the proper tab, in the viewWillAppear method of my class I start my xml parser to parse the rss feed at a specific url, then I populate my UITableView with the contents of the feeds.
Now I want to have a button to "refresh" the view (that is parse the rss feed again and display the new results). So, I have this method given as the action of the refresh button:
-(IBAction)refreshFeeds:(id)sender
{
if (stories){
[stories release]; // Stories is an NSMutableArray for storing the parsed feeds
stories = nil;
}
[self viewWillAppear:YES];
NSLog(@"RELOADING!!!!!!!!!!!!!!!");
}
My problem is that when i press the "refresh" button the view turns to blank, as if there are no feeds to display.
If then i switch to another tab an then come back, the tableview populates again with the feeds.
What am i doing wrong? Thank you in advance.
(Here is part of how i implemented the class)
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
if ([stories count] == 0){
NSString * path = @"http://www.theRssUrl.com";
[self parseXMLFileAtURL:path];
}
}
//custom method to parse rss xml
- (void)parseXMLFileAtURL:(NSString *)URL {
if (stories) {
[stories release];
stories = nil;
}
stories = [[NSMutableArray alloc] init];
[[NSURLCache sharedURLCache] setMemoryCapacity:0];
[[NSURLCache sharedURLCache] setDiskCapacity:0];
//you must then convert the path to a proper NSURL or it won't work
NSURL *xmlURL = [NSURL URLWithString:URL];
rssParser = [[NSXMLParser alloc] initWithContentsOfURL:xmlURL];
[rssParser setDelegate:self];
[rssParser parse];
}
- (void)parserDidEndDocument:(NSXMLParser *)parser {
[newsTable reloadData]; //newsTable is the UITableView i want to refresh
self.view = newsTable;
[rssParser release];
rssParser = nil;
}
EDIT:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Configure the cell.
static NSString *MyIdentifier = @"MyIdentifier";
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil){
cell = [[[CustomCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
}
int storyIndex = indexPath.row;
cell.lTitle.text = [[stories objectAtIndex: storyIndex] objectForKey: @"title"];
cell.lSummary.text = [[stories objectAtIndex: storyIndex] objectForKey: @"summary"];
return cell;
}
[super viewDidAppear:animated];in- (void)viewWillAppear:(BOOL)animatedcall[super viewWillAppear:animated];. – Nick Weaver May 16 '11 at 13:55[self parseXMLFileAtURL:path];directly to refresh your feed as this method empties the array. Don't call viewWillAppear directly. Just call parseXMLFileAtURL in viewWillAppear and refreshFeeds. – Nick Weaver May 16 '11 at 14:04self.view = newsTable;is not correct if you are in a viewController. You should add your tableView in loadView or with a nib file to your view controller and then just call[tableView reloadData]in the parserDidEndDocument. – Nick Weaver May 16 '11 at 14:06[self parseXMLFileAtURL:path];instead of viewWillAppear, the result is the same. I'm not sure i understand your last comment, could you please explain it a bit more? – CrisDeBlonde May 16 '11 at 14:11