NSDictionary *dict =self.datas[indexPath.row];
if([[dict allKeys] containsObject:@"key"])
{
cell.textLabel.text= [dict valueForKey:@"key"];
}else{
cell.textLabel.text=@"没有对应的key值";
}
NSDictionary *dict =self.datas[indexPath.row];
if([[dict allKeys] containsObject:@"key"])
{
cell.textLabel.text= [dict valueForKey:@"key"];
}else{
cell.textLabel.text=@"没有对应的key值";
}