我正在尝试将字典 plist 显示到 UITableView 中,我在这里阅读了很多问题和答案,但没有运气!似乎单元格返回 null !这是我的清单:
和我的代码:
-(void)viewDidLoad {
NSString *path = [[NSBundle mainBundle] pathForResource:@"feed" ofType:@"plist"];
newsFeed = [NSArray arrayWithContentsOfFile:path];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return newsFeed.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return dictionary.allKeys.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
dictionary = [newsFeed objectAtIndex:indexPath.section];
cell.textLabel.text = [[newsFeed objectAtIndex:indexPath.row] valueForKey:@"title"];
return cell;
}
结果什么都没有: