UITableView刪除行或者刪除組的問題

2021-09-21 18:13:57 字數 968 閱讀 8436

@"userid":mbnonemptystring([user_default objectforkey:kuserid]),

@"cardno":mbnonemptystring([_dataarray[indexdelete][@"cardno"]delectspace]),

@"cardtype":mbnonemptystring(_dataarray[indexdelete][@"accounttype"])

[self.request requestwithdictionary:para completion:^(bool success, id responsedata) {

if (success) {

//一定要先處理資料來源  要不然崩潰

[_dataarray removeobjectatindex:indexdelete];

//刪除行是deleterowsatindexpaths方法 

[_tableview deleterowsatindexpaths:[nsarray arraywithobject:[nsindexpath indexpathforrow:indexdelete insection:0]] withrowanimation:uitableviewrowanimationfade];

[self showhud:@"解綁成功"];

刪除組是 deletesections 方法, 如果用deleterowsatindexpaths方法的話row設成0  section:的值是正常取到的,其實還是會崩潰,

[_dataarray removeobjectatindex:indexdelete];

[_tableview deletesections:[nsindexset indexsetwithindex:indexdelete] withrowanimation:uitableviewrowanimationfade];

[self showhud:@"解綁成功"];

UITableView 的行刪除

uitableview 編輯模式 created by mj on 13 4 11.import mjviewcontroller.h inte ce mjviewcontroller property nonatomic,retain nsmutablearray data end impleme...

C 使用NPOI移動若干行(或刪除行)

需要引用npoi庫 dome 如下 string filepath f file test.xlsx 檔案路徑 int stratrowindex 5 起始行,行索引從0開始 int endrowindex 8 結束行,行索引從0開始 int rownumber 1 需要移動的行數 負數表示向上移動...

UITableView 新增,刪除,編輯

uitableviewcell tableview uitableview tableview cellforrowatindexpath nsindexpath indexpath cell.textlabel.text clocknum objectatindex indexpath.row c...