时间:2021-05-20
1、在iOS8以前,我们实现tableview中滑动显示删除,置顶,更多等等的按钮时,都需要自己去实现,在iOS8中系统已经写好了,只要一个代理方法和一个类就行了
2、iOS8的协议对了一个方法,返回值是数组的tableview:editActionForRowAtIndexPath:方法,我们可以在方法内部写好几个按钮,然后放到数组中返回,那些按钮的类就是UITableviewRowAction
3、在UITableviewRowAction类。我们可以设置按钮的样式,显示文字、背景色和按钮事件(在block内实现)
4、在代理方法中,我们可以常见多个按钮放到数组中返回,最先放入数组的按钮显示在最右边,最后放入的显示在最左边
5、如果自己设定一个或多个按钮,系统自带的删除按钮就消失了
设置tableView可以编辑
- (BOOL)tableView: (UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath{return YES;}UITableViewRowAction的使用方法:
+ (instancetype)rowActionWithStyle:(UITableViewRowActionStyle)style title:(nullable NSString *)title handler:(void (^)(UITableViewRowAction *action, NSIndexPath *indexPath))handler;
重写UITableViewDelegate的
- (nullable NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
方法。
- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{if(indexPath.row==0){// 添加一个删除按钮deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了删除");}];}else if (indexPath.row==1){// 添加一个删除按钮deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了删除");}];// 添加一个修改按钮moreRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"修改" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了修改");}];moreRowAction.backgroundEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];}else if (indexPath.row==2){// 添加一个删除按钮deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了删除");}];// 添加一个修改按钮moreRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"修改" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了修改");}];moreRowAction.backgroundEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];// 添加一个发送按钮sanRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"发送" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了发送");}];sanRowAction.backgroundColor=[UIColor orangeColor];}else{// 添加一个删除按钮deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了删除");}];// 添加一个修改按钮moreRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"修改" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了修改");}];moreRowAction.backgroundEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];// 添加一个发送按钮sanRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"发送" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了发送");}];sanRowAction.backgroundColor=[UIColor orangeColor];// 添加一个发送按钮OK = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"OK键" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {NSLog(@"点击了OK");}];OK.backgroundColor=[UIColor purpleColor];}// 将设置好的按钮放到数组中返回if (indexPath.row==0) {return @[deleteRowAction];}else if (indexPath.row==1){return @[deleteRowAction,moreRowAction];}else if(indexPath.row==2){return @[deleteRowAction,moreRowAction,sanRowAction];}else if(indexPath.row==3){return @[deleteRowAction,moreRowAction,sanRowAction,OK];}return nil;}以上所述是小编给大家介绍的iOS 中使用tableView实现右滑显示选择功能的相关资料,希望对大家有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
最近想实现Android左滑弹出菜单框,右滑消失菜单这个个功能。了解了一下Android的滑动事件,必须是在view组件或者Activity上实现,同时必须实现
实现Android滑动退出Activity的功能android向右滑动,退出activity//右滑删除compile'com.jude:swipebackhe
探探右滑是喜欢,探探左滑是不喜欢,探探使用中,交友时用户是可以选择根据自己的喜好选择左滑还是向右滑,方向不同意思也是不同的。 探探是由探探科技(北京)有限公司
探探喜欢是右滑,探探左滑是不喜欢。探探使用中,交友时用户是可以选择向左滑还是向右滑的,方向不同意思也是不同的。 探探是由探探科技(北京)有限公司于2014年5
Android右滑返回上一个界面的实现方法publicclassBaseActivityextendsActivityimplementsOnTouchList