tags:

views:

30

answers:

1

I'm making a simple RSS feed iPhone app, and I run into this:

- (void)viewDidAppear:(BOOL)animated {
 [super viewDidAppear:animated];

 if ([stories count] == 0) {
  NSString * path = @"myfeedURL.rss";
  [self parseXMLFileAtURL:path]; <-------Error Here
 }
+1  A: 
tc.