ios開發(fā):tableView的編輯刪除cell的方法

#pragma mark - 編輯按鈕的方法
    //如何更改UITableView的編輯狀態(tài)
//    _tableView.editing  默認NO
    //設置UITableView的編輯狀態(tài)
    [_tableView setEditing:!_tableView.editing animated:YES]; 
    //只有UITableView處于可編輯狀態(tài)時,才能進行刪除、移動等操作
    //NO->YES->NO
#pragma mark - 刷新按鈕的方法
- (void)refreshButtonClick:(UIBarButtonItem *)button
    //刷新數(shù)據(jù)
    //reloadData  會把UITableView所有的代理方法都會重新執(zhí)行一次
    [_tableView reloadData]; 
//更改刪除文字
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
    return @"刪除";
}
//設置UITableView的編輯類型
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    if (indexPath.section == 0) {
        //返回刪除類型
        return UITableViewCellEditingStyleDelete;
    }
    //返回新增元素類型
    return UITableViewCellEditingStyleInsert;
}
//單選刪除及插入元素對應的方法
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    //有關刪除元素的方法實現(xiàn)
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        //<1>更改數(shù)據(jù)源
        [[_dataArray objectAtIndex:indexPath.section] removeObjectAtIndex:indexPath.row];
        //<2>刪除對應多余的cell
        [_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    //有關新增元素的方法實現(xiàn)
    if (editingStyle == UITableViewCellEditingStyleInsert) {
        //<1>更改數(shù)據(jù)源
        PersonModel *model = [[PersonModel alloc] init];
        model.name = @"我是新來的";
        [[_dataArray objectAtIndex:indexPath.section] insertObject:model atIndex:indexPath.row];
        //<2>新增一行的cell
        [_tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
}
#pragma mark - 有關移動元素的方法
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
    //sourceIndexPath        原始數(shù)據(jù)
    //destinationIndexPath   結果的數(shù)據(jù) 
    //<1>保存將要移動的那行cell上面的數(shù)據(jù)
    PersonModel *model = [[_dataArray objectAtIndex:sourceIndexPath.section] objectAtIndex:sourceIndexPath.row];
    //<2>從原始位置上刪除
    [[_dataArray objectAtIndex:sourceIndexPath.section] removeObject:model];
    //<3>放到新的位置上
    [[_dataArray objectAtIndex:destinationIndexPath.section] insertObject:model atIndex:destinationIndexPath.row];
    [_tableView reloadData];
}

#pragma mark - 系統(tǒng)的編輯按鈕的方法
- (void)setEditing:(BOOL)editing animated:(BOOL)animated{
    [super setEditing:editing animated:animated];
//    editing  NO->YES->NO
    //設置UITableView的編輯狀態(tài)
   [_tableView setEditing:editing animated:YES];//==[_tableView setEditing:!_tableView.editing animated:YES]
    [_tableView setEditing:editing animated:YES];
    //清空之前選擇的元素
    [_rubbishArray removeAllObjects];************
    if (editing) {
        [self.navigationItem setRightBarButtonItem:_rubbishButton animated:YES];
    }else{
        [self.navigationItem setRightBarButtonItem:nil animated:YES];
    }
}
#pragma mark - 一鍵刪除的按鈕的方法
- (void)rubbishButtonClick:(UIBarButtonItem *)button{
    //清除選中的待刪除的數(shù)據(jù)
    [_dataArray removeObjectsInArray:_rubbishArray];
    //tableView刷新數(shù)據(jù)
    [_tableView reloadData];
#pragma mark - 多選刪除的相關方法
//設置編輯類型
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    //如果刪除和插入同時返回,就會出現(xiàn)多選刪除
    return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;
}
//多選刪除對應的方法實現(xiàn)
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    //當tableView處于編輯狀態(tài)時
    if (tableView.editing) {
        //將選中的那行cell上面的數(shù)據(jù)放到將要刪除的數(shù)組里面
        [_rubbishArray addObject:[_dataArray objectAtIndex:indexPath.row]];
    }else{
        //當tableView處于不可編輯狀態(tài)時哀卫,愛干嘛干嘛
        NSLog(@"hhhh");
    }
}
//cell的反選
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
    if (tableView.editing) {
        [_rubbishArray removeObject:[_dataArray objectAtIndex:indexPath.row]];
    }
}

系統(tǒng)Cell上直接疊加控件

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:iden];
        }
    //需要添加else判斷,把cell上面的控件清除否則會出現(xiàn)覆蓋的情況
    else{
        //cell.contentView.subviews  將cell上面所有的控件放到數(shù)組里面
        while ([cell.contentView.subviews lastObject] != nil) {
            //將最后一個元素移除除去;刪除Cell上的控件而不是cell清空
            [(UIView *)[cell.contentView.subviews lastObject] removeFromSuperview];
        }
    }
    //將控件添加到cell上面
    [cell.contentView addSubview:titleLable];

注冊cell不能接收代理傳過來的值

    //注冊cell類:xib類型
    [_tableView registerNib:[UINib nibWithNibName:@"MyTableViewCell" bundle:nil] forCellReuseIdentifier:@"iden"];
    //UITableViewCell的寫法
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"iden" forIndexPath:indexPath];
    BookModel *model = _dataArray[indexPath.row];
    cell.titleLabel.text = model.title;
    return cell;
}
tableView的cell滑動,顯示置頂,刪除,或者收藏
- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewRowAction *toTop = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"置頂" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        NSLog(@"置頂");
        [tableView setEditing:NO animated:YES];
    }];
    toTop.backgroundColor =[UIColor redColor];
    
    UITableViewRowAction *delege = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"刪除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        NSLog(@"刪除");
        [tableView setEditing:NO animated:YES];
    }];
    delege.backgroundColor =[UIColor greenColor];
    NSArray *arrar = [NSArray arrayWithObjects:toTop,delege, nil];
    return arrar;
}
tableView的編輯狀態(tài)下全選,修改每個cell左側的選擇按鈕的背景圖片 http://www.cocoachina.com/bbs/read.php?tid=248799
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell * cell = [self.tableView cellForRowAtIndexPath:indexPath];
    NSLog(@"%@",cell.subviews); //先看看它的子視圖,發(fā)現(xiàn)只有一個子視圖俯萎,叫"<uitableviewcellscrollview: 0x8c8e830;="""" frame=""(0"" 0;="""" 320="""" 100);然后你就取到這個uiview肮塞,再看它的子視圖。="" <br="">
    UIView * view1 = cell.subviews[0];
    NSLog(@"%@",view1.subviews);/*然后這里你看到它有3個子視圖伍玖,分別是 
   "<uitableviewcellselectedbackground: 0x89aca50;="""" frame=""(0"" -0.5;="""" 320="""" 101);="""" layer=""<CALayer:"" 0x89acb20="""">>",
   "<uitableviewcellcontentview: 0x899c350;="""" frame=""(38"" 0;="""" 282="""" 100);="""" opaque=""NO;"" gesturerecognizers=""<NSArray:"" 0x899c660="""">; layer = <calayer: 0x899c3c0="""">>",
   "<uitableviewcelleditcontrol: 0x8979da0;="""" frame=""(0"" 0;="""" 47="""" 100);="""" opaque=""NO;"" userinteractionenabled=""NO;"" layer=""<CALayer:"" 0x8993960="""">>"
   你一個是你點擊了cell之后cell背景變成淡藍色的背景view婿失,第二個是cell里面常用的contentView钞艇,cell的textLabel就是放在這里面的,第三個就是我們要找的移怯,其實這些都是摸索的香璃,我是把第三個view取到这难,然后把它顏色設成紅色舟误,你就會看到那個藍色的圖標就在這個紅色區(qū)域里,所以可以確定藍色圖標是這個view的子視圖姻乓,所以從這里繼續(xù)想下取*/
    UIView * CellEditControl = view1.subviews[2];//按輸出順序來嵌溢,就是這樣向下查找,知道找到你想要的那個view
    UIImageView * imgView = [[[[cell.subviews[0] subviews] objectAtIndex:2] subviews] objectAtIndex:0];
    UIImageView * testImgView = [[UIImageView alloc]initWithImage:imgView.image];
    testImgView.frame = CGRectMake(60, 0, 30, 25);
    [cell.contentView addSubview:testImgView];

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末蹋岩,一起剝皮案震驚了整個濱河市赖草,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌剪个,老刑警劉巖秧骑,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異扣囊,居然都是意外死亡乎折,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進店門侵歇,熙熙樓的掌柜王于貴愁眉苦臉地迎上來骂澄,“玉大人,你說我怎么就攤上這事惕虑》爻澹” “怎么了磨镶?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長健提。 經(jīng)常有香客問我琳猫,道長,這世上最難降的妖魔是什么私痹? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任沸移,我火速辦了婚禮,結果婚禮上侄榴,老公的妹妹穿的比我還像新娘雹锣。我一直安慰自己,他們只是感情好癞蚕,可當我...
    茶點故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布蕊爵。 她就那樣靜靜地躺著,像睡著了一般桦山。 火紅的嫁衣襯著肌膚如雪攒射。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天恒水,我揣著相機與錄音会放,去河邊找鬼。 笑死钉凌,一個胖子當著我的面吹牛咧最,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播御雕,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼矢沿,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了酸纲?” 一聲冷哼從身側響起捣鲸,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎闽坡,沒想到半個月后栽惶,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡疾嗅,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年外厂,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片宪迟。...
    茶點故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡酣衷,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出次泽,到底是詐尸還是另有隱情穿仪,我是刑警寧澤席爽,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站啊片,受9級特大地震影響只锻,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜紫谷,卻給世界環(huán)境...
    茶點故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一齐饮、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧笤昨,春花似錦祖驱、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至崇裁,卻和暖如春匕坯,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背拔稳。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工葛峻, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人巴比。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓术奖,卻偏偏與公主長得像,于是被迫代替她去往敵國和親匿辩。 傳聞我的和親對象是個殘疾皇子腰耙,可洞房花燭夜當晚...
    茶點故事閱讀 43,465評論 2 348

推薦閱讀更多精彩內(nèi)容