美文网首页Ios@IONIC
iOS TableViewCell 左滑显示更多按钮 模仿QQ

iOS TableViewCell 左滑显示更多按钮 模仿QQ

作者: Young_Blood | 来源:发表于2016-02-23 22:08 被阅读1165次
    -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
    {
        editingStyle = UITableViewCellEditingStyleDelete;//此处的EditingStyle可等于任意UITableViewCellEditingStyle,该行代码只在iOS8.0以前版本有作用,也可以不实现。
    }
    
    - (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        UITableViewRowAction *deleteRoWAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {//title可自已定义
            NSLog(@"点击删除");
     }];//此处是iOS8.0以后苹果最新推出的api, 
    

    UITableViewRowAction,Style是划出的标签颜色等状态的定义,这里也可自行定义

    UITableViewRowAction *editRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"编辑" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
            NSLog(@"编辑");
        }];
        editRowAction.backgroundColor = [UIColor colorWithRed:0 green:124/255.0 blue:223/255.0 alpha:1];//可以定义RowAction的颜色
        return @[deleteRoWAction, editRowAction];//最后返回这俩个RowAction 的数组
    }
    

    相关文章

      网友评论

        本文标题:iOS TableViewCell 左滑显示更多按钮 模仿QQ

        本文链接:https://www.haomeiwen.com/subject/jetikttx.html