0

与这个斗争。希望下载只读 plist 以在我的应用程序中使用...

然而努力阅读字典中的内容......下面的代码,任何指针都会很棒......

-(void)loadProducts {


NSDictionary *dict = [NSDictionary dictionaryWithContentsOfURL:[NSURL URLWithString:@"https://dl.dropboxusercontent.com/s/f1nmq1wa7gs96dp/Region1Products.plist"]];


for (NSDictionary* productDictionary in dict) {
    ProductItem* productItem = [[ProductItem alloc] init];

    productItem.picturesCount = [productDictionary objectForKey:@"PicturesCount"];
    productItem.maxPicturesCount = [productDictionary objectForKey:@"MaxPicturesCount"];
    productItem.size = [productDictionary objectForKey:@"Size"];
    productItem.previewImageName = [productDictionary objectForKey:@"ImageName"];
    productItem.sequence = [productDictionary objectForKey:@"Sequence"];
    productItem.productName = [productDictionary objectForKey:@"Name"];
    productItem.type = [productDictionary objectForKey:@"ProductType"];
    productItem.prices = [productDictionary objectForKey:@"Prices"];
    productItem.shippingPrices = [productDictionary objectForKey:@"ShippingPrices"];
    productItem.description = [productDictionary objectForKey:@"Description"];
    productItem.popupMessage = [productDictionary objectForKey:@"PopupMessage"];
    productItem.popupDetailMessage = [productDictionary objectForKey:@"PopupDetailMessage"];
    productItem.incrementalPricing = [[productDictionary objectForKey:@"IncrementalPricing"] boolValue];
    if (YES == productItem.incrementalPricing) {
        productItem.incrementalPrices = [productDictionary objectForKey:@"IncrementalPrices"];
    }

    NSArray *previewItems = [productDictionary objectForKey:@"PreviewItems"];
    for (NSDictionary* previewItem in previewItems) {
        [productItem addProductPreviewItemFromDictionary:previewItem];
    }

    [self.productsList addObject:productItem];
}
4

1 回答 1

1

您正在从 url 创建一个 NSDictionary,但该 plist 中的顶级对象是一个数组。要解决此问题,您可以更改dict为 NSArray 对象。我使用以下简化代码来测试:

NSArray *array = [NSArray arrayWithContentsOfURL:[NSURL URLWithString:@"https://dl.dropboxusercontent.com/s/f1nmq1wa7gs96dp/Region1Products.plist"]];

for (NSDictionary* productDictionary in array) {
    NSLog(@"%@",productDictionary);
}
于 2013-05-25T12:30:35.587 回答