I'm saving my PhotoNote objects to the local file system (essentially a title, original photo and annotated photo), but it's making the app very slow (esp when creating a new PhotoNote, because it forces the whole collection to save).
Is there a way to append to the NSUserDefaults dictionaries? At the moment I'm doing defaults.setObject which is recreating the whole dictionary set.
I'm saving my PhotoNote objects to the local file system (essentially a title, original photo and annotated photo), but it's making the app very slow (esp when creating a new PhotoNote, because it forces the whole collection to save).
Is there a way to append to the NSUserDefaults dictionaries? At the moment I'm doing
defaults.setObject
which is recreating the whole dictionary set.