Hi Everyone,
I am working on an update for my app so that it works with iOS 4 currently and i have hit a dead end. What I'm trying to do is have one of my tabs that is a UITableViewController parse an xml file each time the user clicks on the tab, so if the xml feed is updated on the server it will show up in the tableview. What I had in the 3.x app was
Code:
- (void)viewDidLoad {
if ([shows count] == 0) {
NSString * path = @"http://app.scarletfade.com/Shows.rss";
[self parseXMLFileAtURL:path];
}
[super viewDidLoad];
what I've tried doing that has failed:
Code:
[showsTable reloadData];
in the viewDidLoad method as well...
If anybody has any suggestions for me I would appreciate it!