gpt4 book ai didi

ios - 如何在 iOS Swift 中比较 Set 和 String?

转载 作者:行者123 更新时间:2023-12-01 16:06:31 25 4
gpt4 key购买 nike

我正在尝试比较 IoS 中的 Set 和 String。但我最终遇到了异常。请任何人告诉我该怎么做?

for product in products{
if productId==product.productIdentifier
{
PurchaseManager.instance.purchaseProduct()
}
}

其中 productId 是 NSSet 类型,product.productIdentifier 是 String 类型。我试图强行解开。但它没有帮助我。请帮助我。提前致谢。

最佳答案

你无法比较StringSet<String>== , 而你需要

if productId.contains(product.productIdentifier) {

}

关于ios - 如何在 iOS Swift 中比较 Set<String> 和 String?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59391446/

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