Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save harrysummers/971babbd8c30a45b0ad7b924e24cd884 to your computer and use it in GitHub Desktop.
Save harrysummers/971babbd8c30a45b0ad7b924e24cd884 to your computer and use it in GitHub Desktop.
Custom prepareForDeletion
public override func prepareForDeletion() {
if let artist = artist {
let albums = artist.albums
if albums == nil || albums?.count == 1 {
managedObjectContext?.delete(artist)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment