iOS - UITableView 添加一行动画

2020-12-24  本文已影响0人  HanZhiZzzzz
-(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];

}

摘自:https://www.cnblogs.com/justqi/p/6834331.html

上一篇 下一篇

猜你喜欢

热点阅读