作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
List(list) { feature in
NavigationButton(destination: destination)) {
ListCell(feature: feature)
}
}
我想通过更改目标 View 而不是每行的单个 View 来在点击行时导航到不同的 View
有什么办法吗?
最佳答案
是的,有办法。
这是具有完全动态“单元格”的主体。 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 导航按钮 : How to navigate to different destinations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56819147/
我是一名优秀的程序员,十分优秀!