国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

UITableView表視圖編輯

2019-11-14 19:04:10
字體:
來源:轉載
供稿:網友
UITableViewController(表視圖控制器)繼承自UIViewController,自帶一個tableView
self.view不是UIView而是UITableView
datasource和delegate你默認都是self(UITableViewController)
開發過程中只需建立UITableViewController子類
 
tableView編輯
 
tableView編輯:cell的添加、刪除
使用的場景:刪除一個下載好的視頻,刪除聯系人。
插入一條新的聊天記錄等
 
編輯的步驟
 
1、self讓tableView處于編輯狀態
 

    //editButtonItem對應的相應方法內部會根據點擊按鈕的狀態通過setEditing:animtated:方法來控制表視圖是否進入編輯狀態
     self.navigationItem.rightBarButtonItem = self.editButtonItem;
2、指定tableView那些行可以編輯

 

 
3、指定tableView編輯樣式(添加、刪除)

 
4、編輯完成(先操作數據源,在修改UI)
// Override to support editing the table view.- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {    if (editingStyle == UITableViewCellEditingStyleDelete) {        // Delete the row from the data source//        1、應當先刪除對應行的數據//        2、再將對應行的單元格從表視圖中刪除        [self.datasource removeObjectAtIndex:indexPath.row];        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationMiddle];    } else if (editingStyle == UITableViewCellEditingStyleInsert) {        // Create a new instance of the apPRopriate class, insert it into the array, and add a new row to the table view//        1、現在數組中插入對應的對象//        2、創建對應對象的indexPath//        3、根據indexPath在表視圖中的位置插入對應行        [self.datasource addObject:@"新插入的數據"];        NSIndexPath *insertPath = [NSIndexPath indexPathForRow:self.datasource.count - 1 inSection:0];        [tableView insertRowsAtIndexPaths:@[insertPath] withRowAnimation:UITableViewRowAnimationMiddle];    }   }

當表格被拖拽后會相應此方法,

 

 

 

當表格處于編輯狀態時,可以通過以下方法設置相應的表格是否與許被編輯

 

 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 丽水市| 阿克| 临洮县| 临清市| 巍山| 铜山县| 孝义市| 丹寨县| 监利县| 镇江市| 灵璧县| 新昌县| 宿迁市| 延津县| 沿河| 铅山县| 彭州市| 石嘴山市| 桐柏县| 蓬安县| 赤水市| 丽江市| 耒阳市| 沈丘县| 灵宝市| 大化| 林芝县| 炉霍县| 乐陵市| 汪清县| 庄河市| 白朗县| 虎林市| 贡山| 鸡东县| 上饶市| 洞口县| 乐清市| 霍邱县| 青铜峡市| 大英县|