1

此代码列出了 100 行刷新图标动画。当使用 aLazyVStack而不是 aVStack时,在向下滚动到此列表的底部后,所有动画都会停止,包括在您向后滚动时位于列表顶部的动画。没有这样的问题VStack。关于为什么会发生这种情况的任何想法以及是否有解决方法?使用 Xcode 12.0.1、iOS 14、Swift 5

struct RefreshingList : View {
    @State var isAnimating = false

    var body: some View {
        ScrollView {
            LazyVStack { // <- change to VStack to have animations not stop
                ForEach(0..<100, id: \.self) { i in
                    HStack {
                        Text("\(i) -> ")
                        self.button()
                    }
                }
            }
        }
        .onAppear {
            self.isAnimating=true
        }
    }
    
    func button() -> some View {
        Button(action: {}, label: {
            Image(systemName: "arrow.2.circlepath")
                .rotationEffect(Angle(degrees: self.isAnimating ? 360.0 : 0.0))
                .animation(Animation.linear(duration: 2.0)
                            .repeatForever(autoreverses: false))
        })
    }
}
4

2 回答 2

2

当观察到屏幕上的视图发生变化时,就会发生动画。在VStack所有视图中都会立即创建,因此 SwiftUI 能够观察所有视图的旋转值的变化。

在这种LazyVStack情况下,仅根据需要创建视图,因此当旋转值更改时,底部的视图不在屏幕上.onAppear。当它们确实出现在屏幕上时,它的值已经更改,因此不会发生动画。

解决此问题的一种方法是让按钮拥有.isAnimating @State变量。然后任何时候创建一个,它都会有动画。

struct RefreshingList : View {

    var body: some View {
        ScrollView {
            LazyVStack {
                ForEach(0..<100, id: \.self) { i in
                    HStack {
                        Text("\(i) -> ")
                        AnimatedButton()
                    }
                }
            }
        }
    }
}

struct AnimatedButton: View {
    @State var isAnimating = false
    
    var body: some View {
        Button(action: {
            
        }, label: {
            Image(systemName: "arrow.2.circlepath")
                .rotationEffect(Angle(degrees: self.isAnimating ? 360.0 : 0.0))
                .animation(Animation.linear(duration: 2.0)
                            .repeatForever(autoreverses: false))
        })
        .onAppear {
            isAnimating = true
        }
    }
}
于 2020-10-02T03:59:50.610 回答
0
struct RefreshingListView: View {
    var body: some View {
        ScrollView {
            LazyVStack {
                ForEach(0..<100) {
                    LabelView(id: $0)
                        .id($0)
                }
            }
            .animation(
                Animation
                    .linear(
                        duration: 2)
                    .repeatForever(
                        autoreverses: false))

        }
    }
}

struct LabelView: View {
    @State var
        animate = false
    var id: Int
    var body: some View {
        Label(
            title: {
                Text("<- \(id)")
            }, icon: {
                Image(
                    systemName:
                        "arrow.2.circlepath")
                    .foregroundColor(.blue)
                    .padding(.horizontal)
                    .rotationEffect(
                        Angle(
                            degrees:
                                animate ?
                                360 : 0))
            }
        )
        .onAppear {
            animate
                .toggle()
        }
    }
}
于 2020-10-02T02:47:13.053 回答