向上移动列表项一会导致动画损坏
Moving of list item one up results in broken animation
我只是尝试使用一些非常基本的代码来移动列表中的项目并且一切正常,除非我尝试将项目移动到它上面的一个位置。
看起来好像是先交换了这两行的数据,然后开始动画将行从原来的位置移开。
有没有人知道可能导致此问题的原因,更重要的是,如何解决它?谢谢!
struct ContentView : View {
@State var zahlen = [1,2,3,4,5]
var body: some View {
List {
ForEach(zahlen, id: \.self) { z in
Text("\(z)")
}.onMove(perform: self.move)
}.environment(\.editMode, .constant(.active))
}
func move(source: IndexSet, destination: Int) {
zahlen.move(fromOffsets: source, toOffset: destination)
}
}
这是一个 swift 错误,这对我有用。
struct ContentView : View {
@State var zahlen = [1,2,3,4,5]
var body: some View {
List {
ForEach(zahlen, id: \.self.hashValue) //<<-- here it is "hashValue is deprecated as a Hashable requirement." but until the bug is fixed i think we can use it.
{ z in
Text("\(z)")
}.onMove(perform: self.move)
}.environment(\.editMode, .constant(.active))
}
func move(source: IndexSet, destination: Int) {
zahlen.move(fromOffsets: source, toOffset: destination)
}
}
对于使用 iOS 14.2 的我来说,这个错误似乎不再发生。
我只是尝试使用一些非常基本的代码来移动列表中的项目并且一切正常,除非我尝试将项目移动到它上面的一个位置。
看起来好像是先交换了这两行的数据,然后开始动画将行从原来的位置移开。
有没有人知道可能导致此问题的原因,更重要的是,如何解决它?谢谢!
struct ContentView : View {
@State var zahlen = [1,2,3,4,5]
var body: some View {
List {
ForEach(zahlen, id: \.self) { z in
Text("\(z)")
}.onMove(perform: self.move)
}.environment(\.editMode, .constant(.active))
}
func move(source: IndexSet, destination: Int) {
zahlen.move(fromOffsets: source, toOffset: destination)
}
}
这是一个 swift 错误,这对我有用。
struct ContentView : View {
@State var zahlen = [1,2,3,4,5]
var body: some View {
List {
ForEach(zahlen, id: \.self.hashValue) //<<-- here it is "hashValue is deprecated as a Hashable requirement." but until the bug is fixed i think we can use it.
{ z in
Text("\(z)")
}.onMove(perform: self.move)
}.environment(\.editMode, .constant(.active))
}
func move(source: IndexSet, destination: Int) {
zahlen.move(fromOffsets: source, toOffset: destination)
}
}
对于使用 iOS 14.2 的我来说,这个错误似乎不再发生。