Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

For each element in my database I want to display a navigation link. The destination and the label of each element should get the same object passed. Now I'm creating for each view a new object. Therefore the UI is not consistent. How can I solve this problem and create exactly one viewModel for each element in the database and pass this to the two subviews?

ForEach(database.decks) { elem in 
    // looking for a solution like: let viewModel = ViewModel(deck: deck) and pass this
    NavigationLink (
        destination: DeckDetailView(viewModel: ViewModel(deck: elem)), // <----- this viewModel
        label: {
            ZStack(alignment: .topTrailing) {
                DeckItem(viewModel: ViewModel(deck: elem)) // <----- and this viewModel should be the same!
            }
        }
    )
}
                                               
                                            
question from:https://stackoverflow.com/questions/65884619/how-to-pass-same-object-to-multiple-subviews

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

The good reuse design (and simplified view hierarchy, and update when needed explicitly) is to separate that link in standalone view for row, like

ForEach(database.decks) { elem in 
   DeckRowView(elem: elem)
}

and row

struct DeckRowView: View {
  @ObservedObject var vm: ViewModel

  init(elem: Deck) {
     self.vm = ViewModel(deck: elem)
  }

  var body: some View {
    NavigationLink (
        destination: DeckDetailView(viewModel: self.vm),
        label: {
            ZStack(alignment: .topTrailing) {
                DeckItem(viewModel: self.vm)
            }
        }
    )
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...