我正在尝试更改 Sam 在 24 小时内自学 iOs 的教程之一。在这个例子中,一个 tableview 加载了一个 NSMutableArray,它定义了各种外部 URL。如何修改这段代码以调用本地 html 文件而不是外部 URL?提前致谢。
(void)createFlowerData {
NSMutableArray *redFlowers;
NSMutableArray *blueFlowers;
_flowerSections=@[@"Red Flowers",@"Blue Flowers"];
redFlowers=[[NSMutableArray alloc] init];
blueFlowers=[[NSMutableArray alloc] init];
[redFlowers addObject:@{@"name":@"Poppy",
@"picture":@"Poppy.png",
[blueFlowers addObject:@{@"name":@"Hyacinth",
@"picture":@"Hyacinth.png",
@"url":@"http://en.m.wikipedia.org/wiki/Hyacinth_(flower)"}];
_flowerData=@[redFlowers,blueFlowers];
}