我将我的代码从
swift 3转换为
swift 4并在以下代码中获取此错误.即使我尝试使用flatmap来压平数组,我也会得到这个
原文链接:https://www.f2er.com/swift/319088.htmlCannot convert value of type ‘String’ to expected argument type
‘String.Element’ (aka ‘Character’)
if favoritedProducts.contains("helloWorld") {}
下面的代码行不返回[String]而是返回'[String.Element]’如何将其转换为[String].如果我尝试将其转换为[String],它会说它总会失败.
let productIDs = allItems.flatMap{$0.productID}