我收到以下代码的索引超出范围运行时错误。这似乎很简单,所以我很惊讶即将出现一个问题。如果有人可以帮助我进行调试,将不胜感激
import SwiftUI
struct sampleView: View {
var foo: Foo = Foo(name: "Mark Johnson", images: [Image("IMG_1039")])
var body: some View {
NavigationView {
VStack{
foo.images[0].resizable() // this line raises the error
.frame(width: 200.0, height: 200.0)
}
}
}