在UITableView中插入或者刪除指定的行(或者節)

在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對象,經過它咱們指定了記錄的插入位置。刪除 數據也是相同的道理。

相關文章
相關標籤/搜索