访问NSDictionary的NSArray值

时间:2011-06-10 17:35:38

标签: iphone objective-c xcode4 nsarray nsdictionary

我正在使用MWFeedParser将URL添加到表视图中。我已经阅读了文档并发现我可以访问item.enclosures(带有密钥URL,类型和长度的NSDictionary的NSArray)。我想访问数组中的URL。我需要帮助搞清楚如何访问NSDictionary的NSArray值,这是我到目前为止所做的。

if (indexPath.section == SectionHeader && indexPath.row == SectionHeaderEnclosure) {
    if (item.enclosures) {
        for (NSDictionary *url in item.enclosures){
            //How to access here;
        }
    }
}

1 个答案:

答案 0 :(得分:1)

if (indexPath.section == SectionHeader && indexPath.row == SectionHeaderEnclosure) {  
    if (item.enclosures) {  
        for (NSDictionary *dict in item.enclosures){  
            NSString *url = [dict objectForKey:@"url"];  
            NSLog(@" url is : %@",url);  
        }  
    }  
}