我NavigationView
在 macCatalyst 上遇到了一个奇怪的问题。下面是一个带有侧边栏和详细视图的简单应用程序。选择侧边栏上的项目会显示带有可滚动列表的详细视图。
第一个一切正常NavigationLink
,详细视图显示并且可以自由滚动。但是,如果我选择了一个触发指向第二个详细视图的链接的列表项,则滚动开始,然后冻结。该应用程序仍然有效,只有详细视图滚动被锁定。
相同的代码在 iPad 上运行良好,没有任何冻结。如果我为 macOS 构建,详细视图中的 NavigationLink 将不起作用。
是否有任何已知的解决方法?
这就是它的样子,单击 LinkedView 后,短暂滚动然后视图冻结。仍然可以单击后退按钮或侧边栏上的其他项目,但列表视图被阻止。
这是代码:ContentView.swift
import SwiftUI
struct ContentView: View {
var names = [NamedItem(name: "One"), NamedItem(name: "Two"), NamedItem(name:"Three")]
var body: some View {
NavigationView {
List() {
ForEach(names.sorted(by: {$0.name < $1.name})) { item in
NavigationLink(destination: DetailListView(item: item)) {
Text(item.name)
}
}
}
.listStyle(SidebarListStyle())
Text("Detail view")
}
}
}
struct NamedItem: Identifiable {
let name: String
let id = UUID()
}
struct DetailListView: View {
var item: NamedItem
let sections = (0...4).map({NamedItem(name: "\($0)")})
var body: some View {
VStack {
List {
Text(item.name)
NavigationLink(destination: DetailListView(item: NamedItem(name: "LinkedView"))) {
listItem(" LinkedView", "Item")
.foregroundColor(Color.blue)
}
ForEach(sections) { section in
sectionDetails(section)
}
}
}
}
let info = (0...12).map({NamedItem(name: "\($0)")})
func sectionDetails(_ section: NamedItem) -> some View {
Section(header: Text("Section \(section.name)")) {
Group {
listItem("ID", "\(section.id)")
}
Text("")
ForEach(info) { ch in
listItem("Item \(ch.name)", "\(ch.id)")
}
}
}
func listItem(_ title: String, _ value: String, tooltip: String? = nil) -> some View {
HStack {
Text(title)
.frame(width: 200, alignment: .leading)
Text(value)
.padding(.leading, 10)
}
}
}
TestListApp.swift
import SwiftUI
@main
struct TestListApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}