博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS8 用UITableViewRowAction实现Cell自定义滑动操作
阅读量:6520 次
发布时间:2019-06-24

本文共 1539 字,大约阅读时间需要 5 分钟。

hot3.png

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{    return YES;}- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{    return UITableViewCellEditingStyleDelete;}-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewRowAction *layTopRowAction1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {        NSLog(@"点击了删除");        [tableView setEditing:NO animated:YES];    }];     layTopRowAction1.backgroundColor = [UIColor redColor];    UITableViewRowAction *layTopRowAction2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"置顶" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {        NSLog(@"点击了置顶");        [tableView setEditing:NO animated:YES];    }];            layTopRowAction2.backgroundColor = [UIColor greenColor];    UITableViewRowAction *layTopRowAction3 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"更多" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {        NSLog(@"点击了更多");        [tableView setEditing:NO animated:YES];         }];    layTopRowAction3.backgroundColor = [UIColor blueColor];    NSArray *arr = @[layTopRowAction1,layTopRowAction2,layTopRowAction3];    return arr;}

转载于:https://my.oschina.net/qiangaizhen/blog/481332

你可能感兴趣的文章
Money去哪了- 每日站立会议
查看>>
正则之从dom字符串中提取url
查看>>
大数据——基础概念
查看>>
机器学习温和指南
查看>>
jQuery清空标签内容--防止内存泄露
查看>>
比RBAC更好的权限认证方式(Auth类认证)
查看>>
httpd之编译安装详解
查看>>
android动画
查看>>
LVS Nginx HAProxy 优缺点
查看>>
images对象实现图片幻灯片
查看>>
Oracle 12c 日常维护
查看>>
CF 445A DZY Loves Chessboard
查看>>
Cobbler简介
查看>>
恢复 git reset -hard 的误操作
查看>>
C# WinForm 文件上传下载
查看>>
Spring Integration概述
查看>>
RDIFramework.NET ━ 9.6 模块(菜单)管理 ━ Web部分
查看>>
Android安全问题 静音拍照与被拍
查看>>
cocos2d-x 3.1.1 学习笔记[13] listen 监听器
查看>>
WTL介绍
查看>>