gpt4 book ai didi

ios - 使用 SwiftUI 将列表滚动到底部

转载 作者:行者123 更新时间:2023-12-01 15:20:48 27 4
gpt4 key购买 nike

我有一个列表,当我插入一个项目时,我希望列表在我的 @ObservedObject 时自动滚动到底部。改变了。

有我的实际查看代码:

struct DialogView: View {

@ObservedObject var viewModel = DialogViewModel()

var body: some View {
List {
ForEach(self.viewModel.discussion, id: \.uuid) {
Text($0.content)
}
}.animation(Animation.easeOut)


}
}

最佳答案

SwiftUI 2.0
现在使用 Xcode 12/iOS 14 可以使用 ScrollViewReader/ScrollViewProxy 解决。在 ScrollViewLazyVStack (为了性能,行重用等)如下

struct DialogView: View {

@ObservedObject var viewModel = DialogViewModel()

var body: some View {
ScrollView {
ScrollViewReader { sp in
LazyVStack {
ForEach(self.viewModel.discussion, id: \.uuid) {
Text($0.content).id($0.uuid)
}
}
.onReceive(viewModel.$discussion) { _ in
guard !viewModel.discussion.isEmpty else { return }

withAnimation(Animation.easeInOut) {
sp.scrollTo(viewModel.discussion.last!.uuid)
}
}
}
}
}
}

关于ios - 使用 SwiftUI 将列表滚动到底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57987296/

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