我是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;
}