UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Making result of @FetchRequest available in other views.

Forums > SwiftUI

hello! when using @FetchRequest, to get the FetchResult for a single entity, i can use the result in a ForEach loop. But what if i need the FetchResult in a different view? Do i need to make a new @FetchRequest, or is there an easier way to pass the results to a different view?

3      

You can pass the data in via an @ObservedObject variable in the child, to ensure its in sync.

ForEach (collection) { item in
     DetailView(myItem: item)
}

3      

@pcampbell83, thanks a lot. but how can i get the fetchResult from collection to another view? that's still my struggle.

3      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.