而不是使用硬编码访问特定纬度,如下所示
NSString *path = [[NSBundle mainBundle] pathForResource:
@"WellList" ofType:@"plist"];
NSMutableDictionary *root = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
NSString* latitude = [[[[[root objectForKey: @"Routes"] objectForKey: @"Houston" ] objectForKey: @"Location 1"] objectForKey: @"coordinate"] objectForKey: @"latitude"];
我想使用循环来访问我的 plist 中的每个坐标并将它们添加到我的 NSmutableArray 中。