Hello
@FetchRequest(
entity: Book.entity(),
sortDescriptors: [NSSortDescriptor(keyPath: \Book.entity.date, ascending: true)]
) var books: FetchedResults<Book.entity>
How can I get notified when anything in book changes without using
.onRecevie(books.publisher){ _ in
....
}
And is there any way to use .onChange modifier with books?
Thank You!