码迷,mamicode.com
首页 > 其他好文 > 详细

tableView编辑模式下删除多个cell

时间:2015-02-02 23:18:30      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

在编辑模式下,tableView有自带的删除多个cell的方法。 这种效果自定义写也可以,但是我这里用的是系统的。

先上效果图。核心代码:

    _tableView.allowsMultipleSelectionDuringEditing = YES;

至于全选删除和选择一部分删除就不上具体代码了。


技术分享

如果想要点击cell后的颜色,代码如下:

            //选中cell的背景色

            UIImageView *imageView = [[UIImageView alloc]init];

            imageView.backgroundColor = [UIColor clearColor];

            cell.selectedBackgroundView = imageView;

            //对勾的背景色

            cell.tintColor = MyPinkColor;

效果:

技术分享


如有疑问 欢迎留言~



tableView编辑模式下删除多个cell

标签:

原文地址:http://blog.csdn.net/liuxu0718/article/details/43412359

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!