0

我想隐藏另一个没有数据的单元格,因为我在用户拍照时填满了单元格。

例如

这是表格视图单元格,当用户拍照时,单元格应该建立起来,基本上显示被覆盖的单元格。

-------------------                                     1)------------------
                           hiding the cell
-------------------      -------------------->            -------------------

-------------------       

当用户拍照时,左侧的表格视图应该看起来像右侧。

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{

    UIImage *image = [info valueForKey:UIImagePickerControllerOriginalImage];

    self.thumbnails = image;



   [self.imageView setImage:image];

    [self dismissViewControllerAnimated:YES completion:NULL];

    self.imagePickerController = nil;

    [self.view addSubview:tableViewCell];
 }  




- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    static NSString * CellIdentifier = @"CustomCell";

    CustomTableViewCell *cell = (CustomTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if(cell == Nil){

        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
    }

    UIImage *thumbnail = self.thumbnails;
    cell.photoInfoLabel.text = @"New";
    cell.thumbnailImageView.image = thumbnail;
    return cell;
}
4

2 回答 2

0

插入新单元格

-(void)imageCaptured
{
   // NSMutableArray
   [self.aTableContent addObject:@"Some Object"];

   // Table View
   [self.aTableView beginUpdates];
   [self.aTableView insertRowsAtIndexPaths:@[ [NSIndexPath indexPathForRow:1 inSection:0] ] withRowAnimation:UITableViewRowAnimationAutomatic];
   [self.aTableView endUpdates];
}
于 2013-10-25T14:37:02.893 回答
0

您可以通过调用强制表格视图设置它的单元格

[tableView reloadData];

这会导致调用 tableViews 委托方法:

// how many rows (or cells) are there
- (NSInteger) tableView:(UITableView *)tableView
  numberOfRowsInSection:(NSInteger)section;

// create row/cell (or dequeue a reusable row/cell), set contents the row/cell
- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath;

您可以在 viewController 中实现此方法来控制单元格的数量及其内容。

于 2013-10-25T14:31:22.883 回答