zoukankan      html  css  js  c++  java
  • 滑动cell 显示的按钮 类型分别是 删除 置顶 其他

    - (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath

    {

            //删除按钮

            UITableViewRowAction *deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath){

                    [_dataArray removeObjectAtIndex:indexPath.row];

                    [tableView deleteRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationAutomatic];

                }];

             

         

            //置顶按钮

            UITableViewRowAction *toTopRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"置顶" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath){

                     

                    NSLog(@"置顶");

                     

                }];

            toTopRowAction.backgroundColor = [UIColor orangeColor];

             

            //其他按钮

            UITableViewRowAction *otherRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"其他" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath){

                    NSLog(@"其他");

                }];

         

            otherRowAction.backgroundColor = [UIColor lightGrayColor];

         

            //返回按钮数组

            return @[deleteRowAction, toTopRowAction, otherRowAction];

    }

    1
  • 相关阅读:
    配置samba
    extern c
    剑指offer 孩子们的游戏
    剑指offer 扑克牌顺子
    剑指offer 翻转单词顺序列
    剑指offer 左旋转字符串
    mysql查看或显示当前存在多少数据库
    vim替换
    平衡二叉树
    将employees表的所有员工的last_name和first_name拼接起来作为Name,中间以一个空格区分
  • 原文地址:https://www.cnblogs.com/fantasy3588/p/5776236.html
Copyright © 2011-2022 走看看