gpt4 book ai didi

ios - 我的 url 不返回 nil,而是快速返回空字符串

转载 作者:搜寻专家 更新时间:2023-11-01 06:25:59 27 4
gpt4 key购买 nike

下面是我需要根据 url 获取图像的代码。但是 url 不是 nil,而是双引号 ""或空字符串。因此,我如何快速处理双引号检查。

DispatchQueue.global(qos: .background).async { [weak self] () -> Void in

if let url = NSURL(string: arr[indexPath.row].imgl){

if let data = NSData(contentsOf: url as URL) {

DispatchQueue.main.async {
cell.img.image = UIImage(data: data as Data)!
}
}
}
}

如果 url 是 ""那么它应该转到 else 部分。

最佳答案

转换这个:

NSURL(string: arr[indexPath.row].imgl)

为此:

URL(string: arr[indexPath.row].imgl)

.

how do I handle check for double quotes in swift?

if myString.isEmpty {
print("its empty. Means it is just two double quotes without anything between")
}

关于ios - 我的 url 不返回 nil,而是快速返回空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54635181/

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