Apple says in the NSFetchedPropertyDescription class reference:
Note, however, that unlike a playlist a fetched property is static—it does not dynamically update itself as objects in the destination entity change.
Nice, but what exactly does that mean: static property? Not dynamically updating in the destination entity change?
Can someone explain that?
What I get in my head is that a fetched property is for weak references. Like: A playlist may reference songs, but the playlist doesnt "own" them. If the playlist gets deleted, the song's never get deleted as a consequence of that. Also, the songs have no back-reference to the playlist, they don't have to know that it even exists.
Ok, so if a song gets deleted, the playlist isn't notified in any way? Or what is Apple trying to tell me?