UITableViewCell-02

 // 单行插入刷新,效率高

        NSIndexPath *path = [NSIndexPath indexPathForRow:(self.tgs.count - 1) inSection:0];

        [self.tableView insertRowsAtIndexPaths:@[path] withRowAnimation:UITableViewRowAnimationMiddle];

    

// 全部数据重新刷新,效率低

    [self.tableView reloadData];

posted on 2015-03-14 14:17  FKunLam  阅读(82)  评论(0编辑  收藏  举报