在UITableView中插入或者删除指定的行(或者节)使用的是以下几个API:数组
insertRowsAtIndexPath: withRowAnimation: 在指定位置插入行函数
deleteRowsAtIndexPath: withRowAnimation: 删除指定行spa
insertSections: withRowAnimation: 在指定位置插入节orm
deleteSections: withRowAnimation: 删除指定节对象
调用以上API以前,必须先调用beginUpdates,插入/删除数据完成后再调用endUpdates。rem
-(IBAction)addRows:(id)sender{it
NSMutableArray *indexPaths = [[NSMutableArray alloc] init];io
for (int i=0; i<3; i++) {table
NSString *s = [[NSString alloc] initWithFormat:@”hello %d”,i];date
[datas addObject:s];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
[indexPaths addObject: indexPath];
}
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewScrollPositionNone];
[self.tableView endUpdates];
}
-(IBAction)delRows:(id)sender{
NSMutableArray *indexPaths = [[NSMutableArray alloc] init];
[datas removeObjectAtIndex:0];
[indexPaths addObject:[NSIndexPath indexPathForRow:0 inSection:0]];
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];
}
须要注意的是,调用insert函数时,需保证数据源添加的记录数要与你想插入的行的总数一致,如上面的例子中,想要插入的记录有3条,插入位置分 别为1,2,3,则对应的indexpPaths数组的元素总数为3,数组元素为一个NSIndexPath对象,经过它咱们指定了记录的插入位置。删除 数据也是相同的道理。