标签:des style blog http color 使用
UITableView除了常规的选择模式(selection mode)外还有一个编辑模式(editing mode),在编辑模式中可实现删除,插入,多选,重排序等。
self.tableview.editing = YES; [self.tableview setEditing:YES animated:YES];
- (void)viewDidLoad { [super viewDidLoad]; .... self.navigationItem.rightBarButtonItem = self.editButtonItem; } -(void)setEditing:(BOOL)editing animated:(BOOL)animated { [super setEditing:editing animated:animated]; [self.tableView setEditing:editing animated:animated]; }
- (void)editAction:(id)sender { [self.tableView setEditing:YES animated:YES]; }
UITableView接收到setEditing:animated:消息时,会发送同样的消息到所有可见的cell,设置其编辑模式。
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.row == 1) { return NO; } return YES; }
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { return UITableViewCellEditingStyleDelete; //return UITableViewCellEditingStyleInsert; }
当返回的是UITableViewCellEditingStyleDelete时,所有可编辑的Cell左侧都会显示红色的”减号”标示;
点击左边的“减号”,减号会旋转90度变竖形,并且cell右侧出现”Delete”按钮。
当返回的是UITableViewCellEditingStyleInsert时,在cell的左边会显示绿色”加号”按钮。
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { [dataArray removeObjectAtIndex:indexPath.row]; [tableview deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; }else if(editingStyle == UITableViewCellEditingStyleInsert) { [dataArray insertObject:@"new Item" atIndex:indexPath.row]; [tableview insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; } }
当要删除或插入section时,需调用deleteSections:withRowAnimation:或insertSections:withRowAnimation:方法。
-(NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath { if (proposedDestinationIndexPath.row == 5) { return [NSIndexPath indexPathForRow:8 inSection:0]; } return proposedDestinationIndexPath; }
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{ if(sourceIndexPath == destinationIndexPath) return; id object = [dataArray objectAtIndex:sourceIndexPath.row]; [dataArray removeObjectAtIndex:sourceIndexPath.row]; [dataArray insertObject:object atIndex:destinationIndexPath.row]; }
在iphone自带的邮件程序中,点击编辑按钮后会出现使用”红勾”多选的效果,如图所示
有几种方法可以实现这种效果
在iOS5之前,苹果并没有提供多行选取的API,但其内部确实实现了,我们可以通过使用私有API实现。
一些文章中介绍了不使用tableView本身的方法而完全自己定制实现多选效果的方法。
如:Table View
Multi-Row Edit Mode
Multiple
row selection and editing in a UITableView
参考:
Table View
Programming Guide for iOS – Inserting and Deleting Rows and
Sections
Table View
Programming Guide for iOS – Managing the Reordering of
Rows
UITableView
Class Reference
UITableViewDelegate
Protocol Reference
UITableViewDataSource
Protocol Reference
UITableViewCell
Class Reference
How does
the Twitter iPhone app implement side swiping on a
table?
UITableView划动删除的实现
UITableView多选删除,类似mail中的多选删除效果
iPhone开发技巧之私有API(2)—
UITableView
iOS 5 Dev
Warning: UITableView’s Multiple Select During Editing Doesn’t Work
with Swipe to Delete
Table View
Multi-Row Edit Mode
Multiple
row selection and editing in a UITableView
UITableView编辑模式,布布扣,bubuko.com
标签:des style blog http color 使用
原文地址:http://www.cnblogs.com/guorenlei/p/3861619.html