I am developing an app in using swift and core data that will be handling a large amount of photos along with associated data fields.
I do not want these photos to be mixed in with the general photos in the ios photo app.
What is the best way to handle this for scalability according to apple best practices?
Should I just have a core data field that stored the image file name and then sore the image in hte assets folder?
Is there a better way?