gpt4 book ai didi

swift - 为 ForEach 循环元素添加动画 (SwiftUI)

转载 作者:行者123 更新时间:2023-12-03 09:17:02 24 4
gpt4 key购买 nike

当 ForEach 循环的元素出现或消失时,有什么方法可以添加动画?

我曾尝试以多种方式使用 withAnimation{} 和 .animation() 但它们似乎不起作用

这是一些代码(Xcode 11 beta 5):

import SwiftUI

struct test: View {
@State var ContentArray = ["A","B","C"]
var body: some View {
ScrollView{
VStack{
ForEach(ContentArray.indices, id: \.self){index in
ZStack{
// Object
Text(self.ContentArray[index])
.frame(width:100,height:100)
.background(Color.gray)
.cornerRadius(20)
.padding()
//Delete button
Button(action: {
self.ContentArray.remove(at: index)
}){
Text("✕")
.foregroundColor(.white)
.frame(width:40,height:40)
.background(Color.red)
.cornerRadius(100)
}.offset(x:40,y:-40)
}
}
}
}
}
}


#if DEBUG
struct test_Previews: PreviewProvider {
static var previews: some View {
test()
}
}
#endif

如下所示,没有动画,一切都感觉非常突然。任何解决方案都非常感谢

重要通知 :当元素数量发生变化时,布局应该以与 List 相同的方式发生变化。例如,删除顶部对象时,每个对象都会自动移至顶部

Expected result

Bad result

最佳答案

看起来这个问题仍然存在(Xcode 11.4),因为仅通过复制粘贴观察到的效果是相同的。所以,这里有几个问题:首先,它需要正确设置动画和过渡的组合;其次,ForEach容器必须知道究竟删除了哪个项目,因此必须标识项目,而不是匿名的索引。

结果我们有以下效果(过渡/动画可以是其他的):

demo

struct TestAnimationInStack: View {
@State var ContentArray = ["A","B","C", "D", "E", "F", "G", "I", "J"]
var body: some View {
ScrollView{
VStack{
ForEach(Array(ContentArray.enumerated()), id: \.element){ (i, item) in // << 1) !
ZStack{
// Object
Text(item)
.frame(width:100,height:100)
.background(Color.gray)
.cornerRadius(20)
.padding()
//Delete button
Button(action: {
withAnimation { () -> () in // << 2) !!
self.ContentArray.remove(at: i)
}
}){
Text("✕")
.foregroundColor(.white)
.frame(width:40,height:40)
.background(Color.red)
.cornerRadius(100)
}.offset(x:40,y:-40)
}.transition(AnyTransition.scale) // << 3) !!!
}
}
}
}
}

关于swift - 为 ForEach 循环元素添加动画 (SwiftUI),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57565371/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com