Я разрабатываю свое первое iOS приложение, используя Xcode 11.3 и Swift5.
Но я застрял в использовании ForEach on view.
Я хочу поставить определенное значение struct
в ZStack, используя Foreach, но все равно получаю ошибки.
Error : Unable to infer complex closure return type; add explicit type to disambiguate
Я не знаю, как решить эту проблему. Вы можете мне помочь?
/* Struct I want to put in */
struct Verses: Identifiable{
var id: Int
var verse : Int
}
/* I want to load all values from struct using foreach in view. */
ZStack {
ForEach(controller.verses) { w in <- Here is where I get error.
Rectangle()
.foregroundColor(Color.white)
.cornerRadius(28)
.opacity(0.4)
.offset(x:0, y:68)
.frame(width:290, height:280)
CardView(date: w.date)
.gesture(DragGesture()
.onChanged({ (value) in
......