gpt4 book ai didi

ios - Swift 允许扩展除一个以外的所有单元格?

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

我有一个填充了数据的 tableView,当点击该行时我的所有单元格当前都可以展开/折叠。

但是,我的 UITableView 中的最后一个单元格是一种不同类型的数据,点击时不应展开。

我已将其设置为一次只能展开一个单元格,因此如果当前正在展开另一个单元格并且他们点击 UITableView 中的最后一个单元格,该单元格仍应折叠,但最后一个单元格不应展开.

我检查它是否是最后一个不应展开的单元格的方法是检查其中一个标签:if cell.tickerLabel.text == " CASH"

我可以验证它是正确的,并且 if 语句对最后一个单元格运行。

我已经尝试了很多不同的实现,将 if 语句插入到我展开和折叠单元格的代码中。但我尝试过的都没有达到预期效果。

下面是我的展开/折叠单元格的代码:

我的 didSelectRowAtIndexPath 函数 func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { 让 cell = tableView.dequeueReusableCellWithIdentifier("com.Stocks.portfolioCell", forIndexPath: indexPath) 作为!投资组合单元格

    if let selectedCellIndexPath = selectedCellIndexPath {
if selectedCellIndexPath == indexPath {
self.selectedCellIndexPath = nil
currentCollapsing = true
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
} else {
lastCollapsing = true
self.selectedCellIndexPath = indexPath
tableView.reloadRowsAtIndexPaths([lastIndexPath], withRowAnimation: .None)
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
self.lastIndexPath = indexPath
}
} else {
selectedCellIndexPath = indexPath
self.lastIndexPath = indexPath
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.None)
}
tableView.beginUpdates()
tableView.endUpdates()
}

我的 heightForRowAtIndexPath 函数

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
let SelectedCellHeight: CGFloat = 210
let UnselectedCellHeight: CGFloat = 50
if let selectedCellIndexPath = selectedCellIndexPath {
if selectedCellIndexPath == indexPath {
return SelectedCellHeight
}
}
return UnselectedCellHeight
}

最后是我的 cellForRowAtIndePath 函数中与这个问题相关的部分:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("com.Stocks.portfolioCell", forIndexPath: indexPath) as! portfolioCell

cell.heightSeperator.hidden = true
cell.stockNameView.hidden = true
cell.purchasePriceView.hidden = true
cell.lastPriceView.hidden = true
cell.daysHeldView.hidden = true
cell.endSeperator.hidden = true

if indexPath.row % 2 == 0 {
cell.backgroundColor = UIColor.formulaWhiteColor()
} else {
cell.backgroundColor = UIColor.whiteColor()
}


if selectedCellIndexPath == indexPath {
cell.tickerLabel.textColor = UIColor.formulaBlueColor()
cell.heightSeperator.hidden = false
cell.stockNameView.hidden = false
cell.purchasePriceView.hidden = false
cell.lastPriceView.hidden = false
cell.daysHeldView.hidden = false
cell.endSeperator.hidden = false
tableHeight.constant = tableHeight.constant+210
self.scrollView.contentSize = CGSize(width:self.view.bounds.width, height: self.contentView.frame.height)
self.view.setNeedsDisplay()
}

if lastCollapsing == true || currentCollapsing == true {
lastCollapsing = false
currentCollapsing = false
tableHeight.constant = tableHeight.constant-210
self.scrollView.contentSize = CGSize(width:self.view.bounds.width, height: self.contentView.frame.height)
self.view.setNeedsDisplay()
}
}

任何人都可以帮助我指出正确的方向,让我知道如何制作它,以便我的最后一个单元格不可扩展,同时仍然允许任何其他打开的单元格在点击它时折叠吗?

如有任何帮助,我们将不胜感激!

最佳答案

您应该检查 indexPath 是否是 heightForRow 中的最后一个。

由于您可以选择最后一行,因此逻辑将确定最后一行已被选中,并且在计算它的高度时,它会像被选中一样进行计算(确实如此)。因此,您应该通过在 heightForRow 委托(delegate)方法中处理它来避免扩展最后一行。

更新

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
let SelectedCellHeight: CGFloat = 210
let UnselectedCellHeight: CGFloat = 50

//Add this here, where numberOfRows is self explanatory
//So replace it with the actually variable.
if indexPath.row == numberOfRows - 1 {
return UnselectedCellHeight;
}

if let selectedCellIndexPath = selectedCellIndexPath {
if selectedCellIndexPath == indexPath {
return SelectedCellHeight
}
}
return UnselectedCellHeight
}

关于ios - Swift 允许扩展除一个以外的所有单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30581927/

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