gpt4 book ai didi

ios - UITableView 可重用自定义单元格在 subview 中显示错误内容

转载 作者:搜寻专家 更新时间:2023-10-31 23:02:51 26 4
gpt4 key购买 nike

我有一个 UITableViewController 子类,我在其中使用如下数据填充 UITableView:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("kundeCell") as! KundeCell
cell.selectionStyle = .None

let kunde = self.kundenAuszutragen[indexPath.row]

cell.delegate = self
cell.kunde = kunde

cell.allowsSwypeRight = (self.zahlungenImQuartalVonKunde[kunde] == nil) // Abkassieren
cell.allowsSwypeLeft = self.state == .Austragen // Austragen

cell.abkassierButton.titleAbkassierLabel.showsTextFilled = self.zahlungenImQuartalVonKunde[kunde] != nil

return cell
}

这很好用,看起来像这样: iOS Simulator with App running

上面的文本是一个 UILabel,底部的文本来自一个 UIButton(在这两种情况下都是默认的)。右边的 € 符号是一个自定义 UIButton,带有一个自定义 UILabel 的 subview ,显示带有笔画效果的 €,这是自定义 UIButton 的相关代码,在按钮被初始化时调用:

private func handleInit()
{
// titleAbkassierLabel is the custom UILabel with the stroke
self.titleAbkassierLabel = AbkassierLabel(frame: CGRect(x: 0, y: 0, width: self.bounds.size.width, height: self.bounds.size.height))
self.titleAbkassierLabel.font = UIFont.systemFontOfSize(self.titleAbkassierLabelFontSize)
self.titleAbkassierLabel.text = self.titleText
self.titleAbkassierLabel.textColor = UIColor.clearColor()
self.titleAbkassierLabel.setNeedsDisplay()
self.addSubview(self.titleAbkassierLabel)

self.backgroundColor = UIColor.clearColor()
}

现在当我设置要填充的单元格的 € 符号时,它看起来像这样:my custom UITableViewCell with the € sign filled

然后在 UIButton 子类中调用以下代码:

self.titleAbkassierLabel.showsTextFilled = true

// which then again comes to: (in the titleAbkassierLabel - property)
var showsTextFilled: Bool = true {
didSet
{
self.setNeedsDisplay()
}
}

好吧,这个单元格被填充的 €“突出显示”。但是如果我然后向下滚动,其他单元格也会突出显示(当然因为第一个单元格被重复使用,为什么它显示正确的文本(在左侧的标签中)而不是正确的€符号?应该的单元格'被突出显示甚至看起来与其他人不同: compare it to the other cell, the € seems to be thicker(和其他cell比较,€好像更粗)

所以它看起来更厚,但如果我查看 ViewDebugger,我会看到只有一个自定义按钮和一个自定义 € - 标签: enter image description here

如果您需要更多信息,请发表评论。非常感谢,我希望你能理解这个问题,尽管有德语属性名称/等等!

编辑:我的手机代表:

protocol AustragenAbkassierenDelegate
{
// Kunde bearbeiten
func setKundeAusgetragen(kunde: Kunde, animated: Bool) -> Bool
func setKundeAbkassiert(kunde: Kunde, createZahlung: Bool, endAction: (() -> Void)?) -> UIAlertController?

func getNextKundeAfterKunde(kunde: Kunde) -> Kunde?

func showKundeDetailVCWithKunde(kunde: Kunde)

func showAlertController(alert: UIAlertController!, completionHandler: (() -> Void)?)
}

但我认为这与问题无关。它只是在发生变化时通知委托(delegate)人(此处为 TableViewController)。

最佳答案

尝试在单元格的 prepareForReuse 方法中从头开始重建 titleAbkassierLabel。

关于ios - UITableView 可重用自定义单元格在 subview 中显示错误内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31491452/

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