29,048
社区成员




- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TbCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellInvestDetail" forIndexPath:indexPath];
NSDictionary *tmp=[m_tbArray objectAtIndex:[indexPath row]];
cell.text1 = [tmp objectForKey:@"name"];
cell.text2 = [tmp objectForKey:@"value"];
return cell;
}