如何在tableview单元格中添加两个值并在标签中显示

时间:2016-06-07 11:14:33

标签: ios objective-c cocoa-touch core-data

我是IOS的新手我有两个视图控制器一个用于以表格形式输入数据而另一个,在第一个视图控制器中输入的数据保存在此控制器中。我的屏幕截图保存数据我应该添加的应付值并显示在总标签下方。

表格视图编码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *CellIdentifier = @"Cell";
    TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    // Configure the cell...
    NSManagedObject *device = [self.devices objectAtIndex:indexPath.row];
    cell.amountlbl.text = [device valueForKey:@"amount"];
    cell.currlbl.text = [device valueForKey:@"currency"];
    cell.typelbl.text = [device valueForKey:@"type"];
    cell.totlbl.text= [device valueForKey:@"total"];
    return cell;
}

enter image description here

0 个答案:

没有答案