List(list) { feature in
                NavigationButton(destination: destination)) {
                    ListCell(feature: feature)
                }
            }


我想通过更改目标视图而不是每一行的单个视图来在点击行时导航到不同的视图

有办法吗?

最佳答案

是的,有办法。

这是具有完全动态“单元”的主体。 tableRow函数呈现单元格的内容,而destination函数计算NavigationButton的目标。

   var body: some View {
        List {
           // Renders the table with all the active conversations
           ForEach(appData.currentUser.conversations) { conversation in
                NavigationButton(destination: self.destination(for: conversation) ) {
                    self.tableRow(for: conversation)
                }
            }
        }
    }


destination函数非常简单,这里唯一的“技巧”就是使用AnyView作为返回类型。

private func destination (for conversation: Conversation) -> AnyView {
    if conversation.mode == .personal {
        return AnyView(ConversationDetail(conversation: conversation))

    } else if conversation.mode == .groupChat {
        return AnyView(ConversationDetailGroup(conversation: conversation))

    } else {
        return AnyView(ConversationDetailJoin(conversation: conversation))
    }
}

关于ios - SwiftUI NavigationButton:如何导航到不同的目的地,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56819147/

10-09 16:52