I would like to convert downloaded string to NSArray. First of all I download data with URLFetcher. After that I need to convert my plist data to nsarray. But could not succeeded.
-(void)urlDidFinish:(UrlFetcher *)urlFetcher withString:(NSString *) responseString {
NSLog(@"Response: %@", responseString);
data = [NSArray arrayWithContentsOfFile:responseString];
[table reloadData];
}