我正在使用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;
}
}
}
答案 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);
}
}
}