点击按钮tableview动态添加一行cell

-(void)addCell:(UIButton *)button{
    NSMutableArray *indexPaths = [[NSMutableArray alloc] init];
    NSInteger row = self.dataSource.count;
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:0];
    [indexPaths addObject: indexPath];
    //必须向tableView的数据源数组中相应的添加一条数据
    FoodDesc *foodDesc = [[FoodDesc alloc] init];
    foodDesc.DEFNAME = @"ios";
    foodDesc.DEFDESC = @"66";
    [self.dataSource addObject:foodDesc];
    [self.tableView beginUpdates];
    [self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationFade];
    [self.tableView endUpdates];

}

 

posted @ 2017-05-10 09:30  justqi  阅读(5011)  评论(0编辑  收藏  举报