gpt4 book ai didi

ios - 在Swift中比较字符串

转载 作者:行者123 更新时间:2023-12-01 17:51:06 24 4
gpt4 key购买 nike

我正在使用以下代码比较两个字符串,并根据比较显示不同的图像:

let sameQuotation = "0"
if prioridad == sameQuotation {
print("es 0-")
let image11 = UIImage(named: "pri0") as UIImage?
}


let sameQuotation1 = "1"
if prioridad == sameQuotation1 {
print("es 1-")
let image11 = UIImage(named: "pri1") as UIImage?
}

“打印”操作可以完美完成,但是图像不会改变。

我是Swift的新手,可能我的代码有问题。

谢谢。

最佳答案

它没有改变,因为您要在每个条件中重新声明image11。将let image11 = ...更改为image11 = ...可以访问我认为是image11的先前声明的版本,例如:

if prioridad == sameQuotation {
print("es 0-")
image11 = UIImage(named: "pri0") as UIImage?
}


let sameQuotation1 = "1"
if prioridad == sameQuotation1 {
print("es 1-")
image11 = UIImage(named: "pri1") as UIImage?
}

关于ios - 在Swift中比较字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30418333/

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