gpt4 book ai didi

ios - 当应用程序从后台进入前台时,UITableViewCell 中的 UIButton 不保留图像?

转载 作者:行者123 更新时间:2023-11-30 12:32:01 26 4
gpt4 key购买 nike

我试图了解正在发生的事情,但我对此感到非常困惑。基本上,我有一个 UITableViewCell,在该单元格内有一个 UIBUtton。当表格加载并调用 cellForRowAt 时,我设置 UIButton 图像并向其添加一个目标。

在应用程序进入后台之前,我点击调用我的函数的UIButton。在该函数中,我检查 UIButton 的图像是否等于我设置的图像。

但是,一旦应用程序进入后台然后重新进入前台,当我点击 UIButton 并检查按钮的图像是否与设置(并且也可见)的图像相同时我,不是吗?

我不明白为什么当应用程序从后台进入前台时,UIButton图像没有保留。

这里是一些示例代码:

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! UITableViewCell

let button = cell.viewWithTag(1) as! UIButton

button(self, action: #selector(ViewController.checkImage), for: UIControlEvents.touchUpInside)

button(#imageLiteral(resourceName: "button_stained"), for: UIControlState.normal)

}

fun checkImage(_ sender: UIButton)
{
if sender.currentImage == #imageLiteral(resourceName: "button_stained")
{
print("TEST")
}
}

TEST 仅在我的 View Controller 加载时最初打印出来。如果我的应用程序进入后台,然后返回前台,TEST 不会打印出来。

我也尝试使用 sender.currentImage 以及 sender.image(for: .normal) 但无济于事。

有人可以向我解释一下为什么会发生这种情况吗?

这是一个示例项目:

Test

谢谢。

最佳答案

问题是你的“==”比较。你必须使用 isEqual 来代替。

查看 Apple API Reference “比较图像”部分。

关于ios - 当应用程序从后台进入前台时,UITableViewCell 中的 UIButton 不保留图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43406538/

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