折叠 SwiftUI(Xcode 12)中的侧边栏

9
我正在尝试使用SwiftUI 2.0的新多平台项目模板创建一个简单的应用程序,并希望添加折叠侧边栏的选项,就像其他许多应用程序一样。我尝试添加一个布尔状态变量来控制侧边栏是否显示,但是这并不起作用,因为主视图会变为半透明(我猜这是因为macOS认为侧边栏现在是主视图)。是否有一种原生的方式在SwiftUI中实现这一点?请注意,我正在使用macOS Big Sur、Xcode 12和SwiftUI 2.0。谢谢!
import SwiftUI

struct ContentView: View {

    #if os(iOS)
    @Environment(\.horizontalSizeClass) private var horizontalSizeClass
    #endif
    
    @ViewBuilder var body: some View {
        #if os(iOS)
        if horizontalSizeClass == .compact {
            TabController()
        } else {
            SidebarNavigation()
        }
        #else
        SidebarNavigation()
            .frame(minWidth: 900, maxWidth: .infinity, minHeight: 500, maxHeight: .infinity)
        #endif
    }
    
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
            .previewLayout(.sizeThatFits)
    }
}

Sidebar.swift

import SwiftUI

struct SidebarNavigation: View {
    
    enum HyperspaceViews {
        case home
        case localTimeline
        case publicTimeline
        case messages
        case announcements
        case community
        case recommended
        case profile
    }

    @State var selection: Set<HyperspaceViews> = [.home]
    @State var searchText: String = ""
    @State var showComposeTootView: Bool = false
    @State var showNotifications: Bool = false
    @State private var showCancelButton: Bool = false
    
    
    var sidebar: some View {
        
        VStack {
            
            HStack {
                TextField("Search...", text: $searchText)
                    .cornerRadius(4)
            }
                .padding()
                .textFieldStyle(RoundedBorderTextFieldStyle())
            
            List(selection: self.$selection) {
                    
                Group {
                    
                    NavigationLink(destination: Timeline().container.frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Home", systemImage: "house")
                    }
                        .accessibility(label: Text("Home"))
                        .tag(HyperspaceViews.home)
                    
                    NavigationLink(destination: Text("Local").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Local", systemImage: "person.2")
                    }
                        .accessibility(label: Text("Local"))
                        .tag(HyperspaceViews.localTimeline)
                    
                    NavigationLink(destination: Text("Public").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Public", systemImage: "globe")
                    }
                        .accessibility(label: Text("Public"))
                        .tag(HyperspaceViews.localTimeline)
                    
                    NavigationLink(destination: Text("Messages").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Messages", systemImage: "bubble.right")
                    }
                        .accessibility(label: Text("Message"))
                        .tag(HyperspaceViews.localTimeline)
                    
                    Divider()
                        
                    NavigationLink(destination: Text("Announcements").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Announcements", systemImage: "megaphone")
                    }
                        .accessibility(label: Text("Announcements"))
                        .tag(HyperspaceViews.announcements)
                    
                    NavigationLink(destination: Text("Community").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Community", systemImage: "flame")
                    }
                        .accessibility(label: Text("Community"))
                        .tag(HyperspaceViews.community)
                    
                    NavigationLink(destination: Text("Recommended").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("Recommended", systemImage: "star")
                    }
                        .accessibility(label: Text("Community"))
                        .tag(HyperspaceViews.recommended)
                    
                    Divider()
                    NavigationLink(destination: Text("Recommended").frame(maxWidth: .infinity, maxHeight: .infinity)) {
                        Label("hyperspacedev", systemImage: "tag")
                    }
                        .accessibility(label: Text("Community"))
                        .tag(HyperspaceViews.recommended)
                        
                }
                
            }
                .overlay(self.profileButton, alignment: .bottom)
            .listStyle(SidebarListStyle())
            
        }
    }
    
    var profileButton: some View {
        VStack(alignment: .leading, spacing: 0) {
            Divider()
            NavigationLink(destination: ProfileView().container.frame(maxWidth: .infinity, maxHeight: .infinity)) {
                HStack {
                    Image("amodrono")
                        .resizable()
                        .clipShape(Circle())
                        .frame(width: 25, height: 25)
                    Text("amodrono")
                        .font(.headline)
                }
                .contentShape(Rectangle())
            }
            .accessibility(label: Text("Your profile"))
            .padding(.vertical, 8)
            .padding(.horizontal, 16)
            .buttonStyle(PlainButtonStyle())
        }
            .tag(HyperspaceViews.profile)
    }
    
    var body: some View {
        NavigationView {
            
            #if os(macOS)
            sidebar.frame(minWidth: 100, idealWidth: 180, maxWidth: 200, maxHeight: .infinity)
            #else
            sidebar
            #endif
            
            Text("Content List")
                .frame(maxWidth: .infinity, maxHeight: .infinity)
            
        }
            .sheet(isPresented: self.$showComposeTootView) {
                ComposeTootView(showComposeTootView: self.$showComposeTootView)
                    .frame(minWidth: 400, maxWidth: .infinity, minHeight: 200, maxHeight: .infinity)
            }

            .toolbar {
                
                ToolbarItem {
                    
                    Button(action: {
                        
                        self.showNotifications.toggle()
                        
                    }) {
                        
                        Image(systemName: "bell")
                        
                    }
                        .popover(
                            isPresented: self.$showNotifications,
                            arrowEdge: .bottom
                        ) {
                            LazyVStack {
                                ForEach(0 ..< 10 ) { i in
                                    
                                    Label("@\(i) liked your post!", systemImage: "hand.thumbsup")
                                        .padding()
                                    
                                    Divider()
                                    
                                }
                            }
                        }
                    
                }
                
                ToolbarItem {
                    
                    Button(action: {
                        
                        self.showComposeTootView.toggle()
                        
                    }) {
                        
                        Image(systemName: "square.and.pencil")
                        
                    }
                }
                
             }
    }
    
}

struct SidebarNavigation_Previews: PreviewProvider {
    static var previews: some View {
        SidebarNavigation()
    }
}

我在尝试重新启用侧边栏时遇到了问题?我将其添加到我的Mac应用程序中。将其折叠以进行测试,现在我无法在模拟器中找回它? - Nathan
2个回答

18

这对我有效- https://developer.apple.com/forums/thread/651807

struct SwiftUIView: View {
    var body: some View {
        NavigationView{

        }.toolbar {
            ToolbarItem(placement: .navigation) {
                Button(action: toggleSidebar, label: {
                    Image(systemName: "sidebar.left")
                })
            }
        }
    }
}

func toggleSidebar() {
        NSApp.keyWindow?.firstResponder?.tryToPerform(#selector(NSSplitViewController.toggleSidebar(_:)), with: nil)
}

struct SwiftUIView_Previews: PreviewProvider {
    static var previews: some View {
        SwiftUIView()
    }
}

在iOS的视图中显示,因此您需要一些仅针对macOS的条件。


是的,我也看到了,我是那个问题的作者哈哈,不过还是谢谢你!:D - amodrono
好的,那就谢谢你了!我不知道有多少次我丢失了我的侧边栏并努力让它回来,直到我找到了那篇文章。 - fabpabs
下次,如果您忘记实现按钮并且丢失了侧边栏,您可以通过从 Library/Application Support 中删除应用程序的配置文件来恢复它。 - amodrono
谢谢,真是浪费时间,我不得不花20分钟来弄清楚我做错了什么。 - OwlOCR
这在 Catalyst 中不起作用,NSSplitViewController.toggleSidebar 不可用。有 Catalyst 的任何想法吗? - Burgler-dev

1

Apple提供了NSToolbarToggleSidebarItemIdentifier,用于执行toggleSidebar(_:)方法。

.onAppear {
    NSApp.keyWindow?.toolbar?.insertItem(withItemIdentifier: .toggleSidebar, at: 0)
}

这种方法会在您的工具栏中出现一个按钮,其操作将调用侧边栏切换,并且它可以完美地工作。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接