这段代码:
cell.textLabel.text = [[news objectAtIndex:indexPath.row] objectForKey:@"recipes"];
cell.detailTextLabel.text = [[news objectAtIndex:indexPath.row] objectForKey:@"time"];
显示单元格的标题和副标题,并从 JSON 文件中获取数据。
这段代码:
cell.imageView.image = [UIImage imageNamed:@"test.jpg"];
向表格视图中的所有单元格显示相同的静态图像。如何使这行代码类似于前两行代码,以便从 JSON 文件中获取图像链接并将图像显示为缩略图?