#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];