tableViewCell 侧滑(功能botton)

之前一直想了解这个功能是怎么实现的,但是没有需求就没有动力,今天终于遇到了这个问题,也仔细看了看
1.iOS3.0及以上
在tableViewDelegate 实现以下方法


- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        
        // 删除数据源对应模型
        [self.arrays removeObjectAtIndex:indexPath.row];
        // 从tableView中删除
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationTop];
}

缺点:只能使用系统原生delete,文字,图片皆不可修改。

2.iOS8.0及以上
在tableViewDelegate 实现以下方法

- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewRowAction *action0 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"你想要修改的文字" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        NSLog(@"点击了。。。");
        
        // 收回左滑出现的按钮(退出编辑模式)
        tableView.editing = NO;
    }];
    UITableViewRowAction *action1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        //[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
        NSLog(@"点击了。。。");
    }];
    
    return @[action0,action1];
    
    
}
如图

3.如果以上还不能满足我们的需求只能使用别人家的了(东西都是人家的好!)

MGSwipeTableCell

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 14,393评论 4 61
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,828评论 19 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 175,955评论 25 709
  • 轰隆隆 铁轨上每一寸面积 车轮重重碾过 片刻 便是寂静 冰凉的了 好像谁也不曾遇见谁 生活是否也曾这般 在光阴的角...
    原木C阅读 1,427评论 0 0
  • 因为k k《失控》大作,影响了一代又一代玩互联网的人,直到现在,《失控》里描述的各种思维和玩儿法仍然适用于现在的互...
    camer阅读 4,019评论 0 0

友情链接更多精彩内容