i have basics and intermediate on swift language
i need to make app (private photo vault in swift ) how can i start with it
can i deal with core data to save images in it
or can i save the images in directory inside folder and each folder have name please anyone can tell me which way is good for build this app and store the data ?
I would store the paths of the images in Core Data along with other metadata you want to store about each image. Your app will create a Documents directory for you. You can query the location of the default directory with NSFileManager. When users take a picture or select one from their Photo Library, you can save them to your Documents directory.