当前位置:  开发笔记 > IOS > 正文

在tableview单元格中选择更改图像 - Swift

如何解决《在tableview单元格中选择更改图像-Swift》经验,为你挑选了2个好方法。

我正在尝试在选中时更改单元格内的图像.这是我在视图控制器中的内容:

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

let cell = self.tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! CustomTableViewCell

        cell.bgImage.image = UIImage(named: "second_image")

}

这是我设置图像的地方:

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

let cell = self.tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! CustomTableViewCell

cell.bgImage.image = UIImage(named: "first_image")

}

当我选择单元格时,图像不会更新.我如何让它工作?



1> Leejay Schmi..:

问题可能是你在打电话dequeueReusableCellWithIdentifier.请尝试使用cellForRowAtIndexPath(有关它的文档).这将为您提供对当前单元格的引用,而不是对新的可重用单元格的引用.

所以,根据你上面的代码:

let cell = self.tableView.cellForRowAtIndexPath(indexPath) as! CustomTableViewCell

这种类型转换是至关重要的,因为cellForRowAtIndexPath返回UITableViewCell,不会有bgImage成员.

此外,请确保您有一个名为成员bgImage是一个UIImageView在你的CustomTableViewCell类加入@IBOutlet strong var bgImage: UIImageView!,并且所述IBOutlet连接在你的情节提要/厦门国际银行.



2> Paul Razvan ..:
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let cell = tableView.cellForRowAtIndexPath(indexPath) as! CustomTableViewCell
cell.bgImage.image = UIImage(named: "second_image")}

对于Swift 3+:

func tableView(tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath) as! CustomTableViewCell
cell.bgImage.image = UIImage(named: "second_image")}

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有