List(list) { feature in
NavigationButton(destination: destination)) {
ListCell(feature: feature)
}
}
我想通过更改 destination 视图而不是单一视图来导航到不同的视图。
有办法做到吗?
是的,有一种方法。
这是具有完全动态"细胞"的主体。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))
}
}