i try to load a plist file from other plist file using initWithContentsOfURL:
i explain, i have one table view using a plist file in my host, with this metod:
NSMutableArray *genres = [[NSMutableArray alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://www.myurl.com/file.plist"]];
self.loadGenres = genres;
when choose a cel loading other UITableView, but how can says to a second table view to get other plist from url using <string>
inside the first plist?
Like a:
NSMutableArray *genres = [[NSMutableArray alloc] initWithContentsOfURL:[self.loadGenres objectForKey:@"PLIST URL"]];
self.loadGenres = genres;
Thanks for support.