我尝试使用从其他 plist 文件加载 plist 文件initWithContentsOfURL:
我解释一下,我在主机中有一个使用 plist 文件的表格视图,使用以下方法:
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?
像一个:
NSMutableArray *genres = [[NSMutableArray alloc] initWithContentsOfURL:[self.loadGenres objectForKey:@"PLIST URL"]];
self.loadGenres = genres;
谢谢你的支持。