我想知道是否可以替换下面的ForEach
,因为我只有一个“产品”到products
阵列中?
if !storeManager.products.isEmpty {
ForEach(storeManager.products) { product in
Button(action: {
// Something here
}, label: {
Text("Purchase")
}
}
}
1条答案
按热度按时间qij5mzcb1#
您可以使用
if
检查计数,然后根据结果显示不同的视图