gpt4 book ai didi

iOS swift imageView无法在TableViewCell中隐藏

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

我最近在一个 objective-C 项目中添加了一些 swift 代码,但我遇到了一些我无法解决的奇怪问题。

我正在使用我自定义的搜索栏(来自 Ray 教程)。在 cellForRowAtIndexPath 方法中,我可以自定义我的单元格标签,一切正常。唯一的问题是我无法根据 if (BOOL) 条件隐藏某些 imageView。我的 swift 代码一定有问题,因为我可以使用相同的 if (BOOL) 条件将这些图像隐藏在 Objective-C 文件中。

以防万一,如果有人可以帮助我,我会发布我的代码。

在 SearchVC 中(快速)

class aCell : UITableViewCell {
@IBOutlet weak var some label...
@IBOutlet weak var imageFacturation: UIImageView!
@IBOutlet weak var imageMail: UIImageView!
}

class PatientSearchViewController : ...

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = self.tableView.dequeueReusableCellWithIdentifier("CellSwift") as aCell // aCell is a class defined inside the file where I attach the label and imageView properties
var person : ClassObject

if tableView == self.searchDisplayController!.searchResultsTableView {
person = filteredObjects[indexPath.row]
} else {
person = objects[indexPath.row]
}

// Configure the cell
cell.labelLastname.text = person.lastname
cell.labelFirstname.text = person.firstname

if person.hasMailSent == false {
cell.imageMail.hidden == true // --> does not work in swift code but is Hidden in objective-C with the setHidden:true
}
if person.hasFacturation == false {
cell.imageFacturation.hidden == true // --> does not work in swift code but is Hidden in objective-C with the setHidden:true
}

return cell
}

有没有人有想法?

最佳答案

if person.hasMailSent == false {
cell.imageMail.hidden == true // --> does not work in swift code but is Hidden in objective-C with the setHidden:true
}
if person.hasFacturation == false {
cell.imageFacturation.hidden == true // --> does not work in swift code but is Hidden in objective-C with the setHidden:true
}

cell.imageMail.hidden == true 行中,您基本上是在比较而不是分配。如果您想分配值,它应该只是 cell.imageMail.hidden = true

关于iOS swift imageView无法在TableViewCell中隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27281831/

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