UITabView 編輯 Editing

weixin_34075551發表於2016-05-11

1.點選事件  讓TableView 處於編輯狀態

定義一個確定編輯樣式的例項變數

UITableViewCellEditingStyle      _editingStyle

在按鈕方法中新增點選事件

self.rootView.tableView.editing == YES    

[self.rootView.tableView setEditing:YES]


2.確定Cell是否處於編輯狀態

anEditRowAtIndexPath   返回 YES


3.設定Cell的編輯樣式(刪除、新增)   

返回值:UITableViewCellEditingStyle

新增:UITableViewCellEditingStyleInsert

刪除:UITableViewCellEditingStyleDelete


4.編輯狀態 提交  commitEditing

修改資料來源

刪除:  removeObjectAtIndex

新增:insertObject


更新 UI 介面

[tableView reloadData]

相關文章