微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

自定义 UIButton TableView 没有响应

如何解决自定义 UIButton TableView 没有响应

我制作了一个自定义 UIButton,其中有一个折叠 UITableView。点击按钮后,表格视图高度约束会发生变化,表格视图会以折叠效果打开。 我设法为提供表格数据的按钮创建委托,但我无法获取 didSelectRow 并滚动 tableView。我认为这可能与 tableView 折叠时需要放大按钮框架有关,但我没有设法做到这一点。

这是自定义 UIButton:

CollapseButton.swift
Created by  Matan Levi on 21/12/2020.


import UIKit

protocol CollapseButtonDelegate
{
var options : [String] { get }
func didSelectRow(tableView: UITableView,indexPath: IndexPath)
}

@IBDesignable class CollapseButton: UIButton {

@IBOutlet weak var btnTableViewOutlet: UITableView!
@IBOutlet weak var btnCollapseHeight: NSLayoutConstraint!

let open = CGFloat(113)
let close = CGFloat.zero
var isOpen = false
var delegate : CollapseButtonDelegate?

//  init used if the view is created programmatically
override init(frame: CGRect) {
    super.init(frame: frame)
    self.customInit()
}

//  init used if the view is created through IB
required init?(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)
    self.customInit()
}

override func awakeAfter(using aDecoder: NSCoder) -> Any? {
      guard subviews.isEmpty else { return self }
    let view = UINib(nibName: "CollapseButton",bundle: nil).instantiate(withOwner: nil,options: nil)[0] as! UIView
    view.translatesAutoresizingMaskIntoConstraints = false
    return view
  }
//  Do custom initialization here
private func customInit()
{

}


@IBAction func collapseBtn(_ sender: UIButton) {
    self.btnTableViewOutlet.addBorder()
    UIView.animate(withDuration: 1) {
        self.btnCollapseHeight.constant = self.isOpen ? self.close : self.open
        sender.imageView?.transform = self.isOpen ? CGAffineTransform.identity : CGAffineTransform(rotationAngle: .pi)
        self.layoutIfNeeded()

    }
    isOpen = !isOpen
}
}

extension CollapseButton : UITableViewDelegate,UITableViewDataSource
{
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
    return delegate?.options.count ?? 0
}

func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = UITableViewCell(style: .default,reuseIdentifier: nil)
    cell.textLabel?.text = delegate?.options[indexPath.row]
    cell.backgroundColor = .green
    return cell
}

func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
    delegate?.didSelectRow(tableView: tableView,indexPath: indexPath)
}

}

这是按钮的实现:

extension PortfolioViewController : CollapseButtonDelegate
{
func didOpenCollapse() {
    accountBtnOutlet.setNeedsUpdateConstraints()
    accountBtnOutlet.addBorder()
}

var options: [String] {
    return FakeDatasupplier.shared.getAccountsData()
}

func didSelectRow(tableView: UITableView,indexPath: IndexPath) {
    print(indexPath.row)
}
}

我试过了:

1.检查用户交互已启用 2.检查委托和数据源是否连接 3.在ui调试器中检查UITableView上面没有任何东西

任何建议将不胜感激

编辑

添加截图:

Button Image

解决方法

所以实际的解决方案是这样的: 起初,我将我的类更改为 UIView,这使得在我的案例中添加更多视图或表格方面更加方便。之后,我为打开桌子制作了委托,并在使用按钮的 viewController 中为按钮制作了一个高度约束出口,并在该按钮打开折叠桌子时更新它。 感谢@DonMag 指导我调查解决方案。

我会尽量让它更简单易用,但在那之前, 这是半决赛的 buttonView 类:

//
//  CollapseView.swift
//  IBITrade
//
//  Created by  Matan Levi IBI on 22/12/2020.
//

import UIKit

protocol CollapseViewDelegate
{
  func setTableViewOptions(collapseView : CollapseView) -> [String]
  func didSelectRow(collapseView : CollapseView,tableView: UITableView,indexPath: IndexPath)
  func isCollapseOpen(collapseView : CollapseView,isOpen : Bool)
}

@IBDesignable class CollapseView: UIView {

@IBOutlet weak var tableViewHeightConstraint: NSLayoutConstraint!
@IBOutlet weak var collapseBtnOutlet: UIButton!
@IBOutlet weak var collapseTableViewOutlet: UITableView!

public var buttonTitle: String = "" {
        didSet {
            self.collapseBtnOutlet.setTitle(buttonTitle,for: .normal)
        }
    }

var delegate : CollapseViewDelegate?
let open = CGFloat(113)
let close = CGFloat.zero
var isOpen = false

//  init used if the view is created programmatically
let nibName = "CollapseView"
var contentView:UIView?

required init?(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)
    commonInit()
}
override init(frame: CGRect) {
    super.init(frame: frame)
    commonInit()
}
func commonInit() {
    guard let view = loadViewFromNib() else { return }
    view.frame = self.bounds
    self.addSubview(view)
    contentView = view
    
}
func loadViewFromNib() -> UIView? {
    let bundle = Bundle(for: type(of: self))
    let nib = UINib(nibName: nibName,bundle: bundle)
    return nib.instantiate(withOwner: self,options: nil).first as? UIView
}


@IBAction func openCloseTable(_ sender: UIButton) {
    collapseTableViewOutlet.addBorder()
    UIView.animate(withDuration: 1) { [self] in
        self.tableViewHeightConstraint.constant = self.isOpen ? self.close : self.open
        sender.imageView?.transform = self.isOpen ? CGAffineTransform.identity : CGAffineTransform(rotationAngle: .pi)
        delegate?.isCollapseOpen(collapseView: self,isOpen: isOpen)
        self.layoutIfNeeded()
    }
    
    isOpen = !isOpen
  }

}
extension CollapseView : UITableViewDelegate,UITableViewDataSource
  {
   func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
    return delegate?.setTableViewOptions(collapseView: self).count ?? 0
  }

  func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = UITableViewCell(style: .default,reuseIdentifier: nil)
    cell.textLabel?.text = delegate?.setTableViewOptions(collapseView: self)[indexPath.row]
    cell.backgroundColor = .green
    return cell
  }

  func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
    delegate?.didSelectRow(collapseView: self,tableView: tableView,indexPath: indexPath)
  }

}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。