gpt4 book ai didi

ios - 为什么委托(delegate)在 VIewController 中可以正常工作,但在 UITableViewCell 中不能正常工作?

转载 作者:行者123 更新时间:2023-11-28 15:12:20 24 4
gpt4 key购买 nike

我有两个委托(delegate),其中一个在我的 tableview 中展开或折叠一个单元格,其中一个必须在 tableViewCell 类中打印一些内容以进行测试。我的代码如下:

protocol ExpandableHeaderViewDelegate {
func toggleSection(header: ExpandableHeaderView, section: Int)
}

protocol MenuCellDelegate {
func menuCellDidChange()
}

class ExpandableHeaderView: UITableViewHeaderFooterView {
var delegate: ExpandableHeaderViewDelegate?
var delegate2 : MenuCellDelegate?

var section: Int!

override init(reuseIdentifier: String?) {
super.init(reuseIdentifier: reuseIdentifier)
self.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(selectHeaderAction)))
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

@objc func selectHeaderAction(gestureRecognizer: UITapGestureRecognizer) {
let cell = gestureRecognizer.view as! ExpandableHeaderView
delegate2?.menuCellDidChange()
delegate?.toggleSection(header: self, section: cell.section)
}

func setDelegate2(delegate2: MenuCellDelegate) {
self.delegate2 = delegate2
}
func customInit(title: String, section: Int, delegate: ExpandableHeaderViewDelegate,width : Int,height: Int) {
let cell = Bundle.main.loadNibNamed("MenuTableViewCell", owner: self, options: nil)?.first as! MenuTableViewCell
let menucell = DataService.instance.getMenuCells()[section]
if (section==3){
cell.updateViewsWithFont(menuCell: menucell)
}else{
cell.updateViews(menuCell: menucell)
}
self.addSubview(cell)
cell.frame.size.width = CGFloat(width)
cell.frame.size.height = CGFloat(height / 8)

self.section = section

self.delegate = delegate
}

override func layoutSubviews() {
super.layoutSubviews()
}

}

和我的 tableViewCell:

class MenuTableViewCell: UITableViewCell,MenuCellDelegate {


@IBOutlet weak var menuCellIcon: UIImageView?
@IBOutlet weak var menuCellLabel: UILabel?
@IBOutlet weak var fontAwsomeLabel: SwiftIconLabel?

let delegateTest = ExpandableHeaderView()

func updateViews(menuCell:MenuCell) {
delegateTest.setDelegate2(delegate2: self)
menuCellIcon?.image = UIImage(named: menuCell.menuCellIcon)
menuCellLabel?.text = menuCell.menuCellLabel
}

func menuCellDidChange() {
fontAwsomeLabel?.font = UIFont.icon(from: .FontAwesome, ofSize: 30.0)
fontAwsomeLabel?.text = String.fontAwesomeIcon("angledown")
print("yyyy")
}


func updateViewsWithFont(menuCell:MenuCell) {
menuCellIcon?.image = UIImage(named: menuCell.menuCellIcon)
menuCellLabel?.text = menuCell.menuCellLabel
fontAwsomeLabel?.font = UIFont.icon(from: .FontAwesome, ofSize: 30.0)
fontAwsomeLabel?.text = String.fontAwesomeIcon("angleleft")

}

}

和我的 View Controller :

class HomeVC:    UIViewController,UITableViewDelegate,UITableViewDataSource,ExpandableHeaderVi    ewDelegate,MenuCellDelegate {
func menuCellDidChange() {
print("eeeeeeeeee")
}




@IBOutlet weak var homeMenuTableView: UITableView!

var sections = [
MenuCell(menuCellIcon: "ico_news.png",menuCellLabel:"اطلاع رسانی", menuSubCells: [], expanded: false),
MenuCell(menuCellIcon:"ico_filter.png",menuCellLabel:"دروازه بانی",menuSubCells: [], expanded: false),
MenuCell(menuCellIcon:"ico_sharing.png",menuCellLabel:"اشتراک گذاری خبر",menuSubCells: [], expanded: false),
MenuCell(menuCellIcon:"ico_massaging.png",menuCellLabel:"آرشیو پیام ها",
menuSubCells: [MenuCell(menuCellIcon:"ico_inbox.png",menuCellLabel:"آرشیو پیام", menuSubCells: [], expanded: false),
MenuCell(menuCellIcon:"ico_compose.png",menuCellLabel:"پیام جدید", menuSubCells: [], expanded: false)], expanded: false),
MenuCell(menuCellIcon:"ico_massaging.png",menuCellLabel:"تنظیمات",menuSubCells: [], expanded: false)
]


override func viewDidLoad() {
super.viewDidLoad()
self.homeMenuTableView.backgroundColor = UIColor(red: 0.0196, green: 0.1059, blue: 0.1647, alpha: 1.0)
let px = 1 / UIScreen.main.scale
let frame = CGRect(x:0,y:0,width: self.homeMenuTableView.frame.size.width,height: px)
let line = UIView(frame: frame)
self.homeMenuTableView.tableHeaderView = line
line.backgroundColor = self.homeMenuTableView.separatorColor
homeMenuTableView.tableFooterView = UIView()
homeMenuTableView.dataSource=self
homeMenuTableView.delegate=self
}

func numberOfSections(in tableView: UITableView) -> Int {
return sections.count
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return sections[section].menuSubCells.count
}

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return homeMenuTableView.frame.size.height / 8
}

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
if (sections[indexPath.section].expanded) {
return homeMenuTableView.frame.size.height / 8
}
return 0
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 2
}

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let header = ExpandableHeaderView()
header.setDelegate2(delegate2: self)
header.customInit(title: sections[section].menuCellLabel, section: section, delegate: self,width : Int(homeMenuTableView.frame.width),height : Int(homeMenuTableView.frame.size.height))
return header
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = Bundle.main.loadNibNamed("MenuTableViewCell", owner: self, options: nil)?.first as! MenuTableViewCell
let menucell = sections[indexPath.section].menuSubCells[indexPath.row]
cell.updateViews(menuCell: menucell)
return cell
}

func toggleSection(header: ExpandableHeaderView, section: Int) {
sections[section].expanded = !sections[section].expanded
homeMenuTableView.beginUpdates()
for i in 0 ..< sections[section].menuSubCells.count {
homeMenuTableView.reloadRows(at: [IndexPath(row: i, section: section)], with: .automatic)
}
homeMenuTableView.endUpdates()
}

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
cell.backgroundColor = UIColor(red: 0.0196, green: 0.1059, blue: 0.1647, alpha: 1.0)
}


}

问题是 viewController 中的 menuCellDidChange 工作正常,但 MenuTableViewCell 中的 menuCellDidChange 不工作。

最佳答案

您的代码中存在问题。这两个与您面临的问题有些相关:

  1. 您没有为委托(delegate)使用弱指针。这将导致内存泄漏。

  2. MenuTableViewCell 中,您正在创建一个新的 ExpandableHeaderView 实例,在这里,let delegateTest = ExpandableHeaderView()。这个无法附加到 View 的标题 View 的新实例如何调用点击手势操作的委托(delegate)?

在我看来,您需要学习如何使用委托(delegate)、弱指针和强指针以及 View 层次结构。网上有大量可用的源 Material 。了解这些基本概念后,您就会明白为什么您的代码无法正常工作。

关于ios - 为什么委托(delegate)在 VIewController 中可以正常工作,但在 UITableViewCell 中不能正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47427702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com