I have following problem:
I have entities, say person. For each person you can make one photo. I save this path of this photo in an attribute of the person.
Everytime when I open the person, I get the path of the photo, load it into UIImage and everything is ok.
But when I update the app, then the identifier of the app will change, so no photos will be shown anymore. The full path of the photo is wrong after the update.
Is there anyway to prevent the identifier changing?
OR
How can I save the photo with relative paths? Idea: I save the reltive path to coredata and at reading I put it toghether with the app-path.