英文:
How do I make non-constant range an integer
问题
Picker("尺寸", selection: $size) {
ForEach(sizeOption.indices) { index in
Text(sizeOption[index])
}
}
英文:
Picker("Size",selection: $size) {
ForEach(sizeOption.indices) { index in
Text(sizeOption[index])
}
}
答案1
得分: 2
添加 id
参数,值为 \.self
。
Picker("尺寸", selection: $size) {
ForEach(sizeOption.indices, id: \.self) { index in
Text(sizeOption[index])
}
}
英文:
Add the id
parameter with the value \.self
Picker("Size",selection: $size) {
ForEach(sizeOption.indices, id: \.self) { index in
Text(sizeOption[index])
}
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论