Swift-自定义左滑删除

方案一:

通过自定义UITableViewlayoutSubviews方法中添加对应控件(适用于单个按钮)

image.png

  • 使用弊端:
    1.按钮宽度需要自己预估
    2.控件宽度需要func tableView(_ tableView: UITableView, titleForDeleteConfirmationButtonForRowAt indexPath: IndexPath) -> String?代理方法中来填充
  • 核心代码
class HWTableView: UITableView {
    private var unifiedColor = UIColor.red
    private lazy var deleteBtn: UIButton = {
        let deleteBtn = UIButton(type: .custom)
        deleteBtn.backgroundColor = unifiedColor
        deleteBtn.setTitle("删除", for: .normal)
        deleteBtn.setTitleColor(UIColor.white, for: .normal)
        deleteBtn.titleLabel?.font = UIFont.systemFont(ofSize: 15)
        deleteBtn.setImage(UIImage(named: "垃圾桶白"), for: .normal)
        return deleteBtn
    }()
    override func layoutSubviews() {
        super.layoutSubviews()
        if #available(iOS 11.0, *) {
            for subview in self.subviews {
                if subview.isKind(of: NSClassFromString("UISwipeActionPullView")!) {
                    subview.backgroundColor = unifiedColor
                    for view in subview.subviews  {
                        if view.isKind(of: NSClassFromString("UISwipeActionStandardButton")!) {
                            view.backgroundColor = unifiedColor
                            let frame = CGRect(x: 0, y: 0, width: 80, height: view.bounds.size.height)
                            deleteBtn.frame = frame
                            deleteBtn.hw_locationAdjust(buttonMode: .top, spacing: 5)
                            view.addSubview(deleteBtn)
                            view.bringSubviewToFront(deleteBtn)
                            break }
                    }
                    break }
            }
        } else {    // IOS 10以及以下
            for subview in subviews  {
                if subview.isKind(of: NSClassFromString("UITableViewCellDeleteConfirmationView")!) {
                    subview.backgroundColor = unifiedColor
                    for view in subview.subviews {
                        if view.isKind(of: UIButton.self) {
                        view.backgroundColor = unifiedColor
                        let frame = CGRect(x: 0, y: 0, width: 80, height: view.bounds.size.height)
                        deleteBtn.frame = frame
                        deleteBtn.hw_locationAdjust(buttonMode: .top, spacing: 5)
                        view.addSubview(deleteBtn)
                        view.bringSubviewToFront(deleteBtn)
                        break}
                    }
                break}
            }
        }
    }
}

方案二:

通过自定义Cell来添加控件


image.png
  • 优势:不仅适用于UITableView也适用于UICollectionView
  • 弊端:毕竟是自定义的很多地方需要注意,必须处理 不然会出现各种各样的Bug
  • 核心代码
let width = UIScreen.main.bounds.size.width

class LeftSlideTableViewCell: UITableViewCell {
 
    private var btnwidth: CGFloat = 80
    public var closeOtherCellSwipeBlock:(()->())?
    private var isOpenLeft = false
    private lazy var btn_1: UIButton = {
        let btn = UIButton()
        btn.setTitle("按钮1", for: UIControl.State.normal)
        btn.frame = CGRect(x: width+btnwidth, y: 0, width: btnwidth, height: self.bounds.size.height)
        btn.backgroundColor = UIColor.red
        btn.setImage(UIImage(named: "垃圾桶白"), for: .normal)
        btn.titleLabel?.font = UIFont.systemFont(ofSize: 12)
        btn.tag = 100
        btn.addTarget(self, action: #selector(btnClick(btn:)), for: UIControl.Event.touchUpInside)
        btn.hw_locationAdjust(buttonMode: .top, spacing: 5)
        return btn
    }()
    private lazy var btn_2: UIButton = {
        let btn = UIButton()
        btn.setTitle("按钮2", for: UIControl.State.normal)
        btn.frame = CGRect(x: width, y: 0, width: btnwidth, height: self.bounds.size.height)
        btn.backgroundColor = UIColor.blue
        btn.tag = 101
        btn.setImage(UIImage(named: "垃圾桶白"), for: .normal)
        btn.titleLabel?.font = UIFont.systemFont(ofSize: 12)
        btn.addTarget(self, action: #selector(btnClick(btn:)), for: UIControl.Event.touchUpInside)
        btn.hw_locationAdjust(buttonMode: .top, spacing: 5)
        return btn
    }()

    @objc func btnClick(btn: UIButton) {
        self.closeLeftSwipe()
        // 可以添加点击按钮回调
    }
    override func awakeFromNib() {
        super.awakeFromNib()
    }

    override func layoutSubviews() {
        super.layoutSubviews()
        /// 问题点 修改contentView宽度 解决超出父控件按钮点击无响应问题 这里如果是XIB的话估计要修改一下约束了(未尝试)
        if self.contentView.frame.size.width != width + btnwidth*2 {
            let oldFrame = self.contentView.frame
            self.contentView.frame = CGRect(x: oldFrame.origin.x, y: oldFrame.origin.y, width: width + btnwidth*2, height: oldFrame.size.height)
        }
    }
    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
    }

    override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)
        setUI()
    }
    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }
    private func setUI() {
        self.contentView.addSubview(btn_1)
        self.contentView.addSubview(btn_2)
        let leftSwipe = UISwipeGestureRecognizer(target: self, action: #selector(swipe(sender:)))
        leftSwipe.direction = UISwipeGestureRecognizer.Direction.left
        self.contentView.addGestureRecognizer(leftSwipe)
        let rightSwipe = UISwipeGestureRecognizer(target: self, action: #selector(swipe(sender:)))
        rightSwipe.direction = UISwipeGestureRecognizer.Direction.right
        self.contentView.addGestureRecognizer(rightSwipe)
    }
    
    @objc private func swipe(sender: UISwipeGestureRecognizer) {
        if sender.direction == UISwipeGestureRecognizer.Direction.left { // 左滑
            if isOpenLeft {return}
            closeOtherCellSwipeBlock?()
            UIView.animate(withDuration: 0.5) {
                let oldFrame = self.contentView.frame
                let frame = CGRect(x: oldFrame.origin.x-self.btnwidth*2, y: oldFrame.origin.y, width: oldFrame.size.width, height: oldFrame.size.height)
                self.contentView.frame = frame
//                self.contentView.center = CGPoint(x: (width)*0.5-160, y: self.bounds.height*0.5) // 有Bug
            }
            isOpenLeft = true
        } else if sender.direction == UISwipeGestureRecognizer.Direction.right { // 右滑
            closeLeftSwipe()
        }
    }
    /// 关闭左滑,恢复原状
   public func closeLeftSwipe() {
        if isOpenLeft == false {return}
        UIView.animate(withDuration: 0.5) {
//            self.contentView.center = CGPoint(x: width*0.5, y: self.bounds.height*0.5)
            let oldFrame = self.contentView.frame
            let frame = CGRect(x: 0, y: oldFrame.origin.y, width: oldFrame.size.width, height: oldFrame.size.height)
            self.contentView.frame = frame
        }
        isOpenLeft = false
    }
}

问题点一:
因为添加的控件是超出屏幕外的,如果不修改contentView的宽度,那么添加到contentView中的控件点击事件无法触发,如果修改后通过xib控件添加约束那么就需要处理右边约束

override func layoutSubviews() {
        super.layoutSubviews()
        /// 问题点 修改contentView宽度 解决超出父控件按钮点击无响应问题 这里如果是XIB的话估计要修改一下约束了(未尝试)
        if self.contentView.frame.size.width != width + btnwidth*2 {
            let oldFrame = self.contentView.frame
            self.contentView.frame = CGRect(x: oldFrame.origin.x, y: oldFrame.origin.y, width: width + btnwidth*2, height: oldFrame.size.height)
        }
    }

问题点二:
因为view真实Frame只有在layoutSubviews中才能拿到,以下代码修改center或者frame必须是真实的 不然会出现bug

            UIView.animate(withDuration: 0.5) {
                let oldFrame = self.contentView.frame
                let frame = CGRect(x: oldFrame.origin.x-self.btnwidth*2, y: oldFrame.origin.y, width: oldFrame.size.width, height: oldFrame.size.height)
                self.contentView.frame = frame
//                self.contentView.center = CGPoint(x: (width)*0.5-160, y: self.bounds.height*0.5) // 有Bug
            }

问题点三:
因为Cell中是在固定方法处理子控件,所有创建是必须固定的方法

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        var cell = tableView.dequeueReusableCell(withIdentifier: "id") as? LeftSlideTableViewCell
        if cell == nil {
            cell = LeftSlideTableViewCell.init(style: UITableViewCell.CellStyle.default, reuseIdentifier: "id")
        }
        /// 左滑回调 用于关闭其他左滑
        cell?.closeOtherCellSwipeBlock = { [weak self] in
            self?.closeOtherCellSwipeBlock()
        }
        cell?.textLabel?.text = itemArray[indexPath.row]
        return cell ?? UITableViewCell()
    }

问题点四:
什么时候关闭左滑,这是需要考虑在其中的

   /// 1.一个cell触发左滑 需要关闭其他左滑
    cell?.closeOtherCellSwipeBlock = { [weak self] in
        self?.closeOtherCellSwipeBlock()
    }
    ///2.  在滑动tableView时必须关闭所有左滑 不然会出现Cell复用Bug
    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        closeOtherCellSwipeBlock()
    }
    ///3.点击cell 必须关闭左滑 不然会出现Bug
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        tableView.deselectRow(at: indexPath, animated: false)
        let cell = tableView.cellForRow(at: indexPath) as! LeftSlideTableViewCell
        cell.closeLeftSwipe()
    }
    /// 4.点击按钮时必须关闭左滑 不然会出现Bug
    @objc func btnClick(btn: UIButton) {
        self.closeLeftSwipe()
        
    }

小结:目前暂时只找出以上问题因为我现在用到的,使用方案一就可以解决了,故没有更深一步研究

Dome

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容