i need to make app like penultimate. There should be a gallery and user can save pictures in it, not to camera roll. I already make drawing functions but can’t save images into app. I have’t any ideas how to do that. I already saw all questions like this in stack overflow. I don’t want to use core data and tableview.
So, if you know how to do that, please help me)))
i need to make app like penultimate. There should be a gallery and user
Share
If you dont want use any databases. then have an option to save Images in ur Apps Document Directory and retrieve it from document Directory whenever needed.
i have written some methods to save image into doc director and retrieve it in my app.
These are as follows :
in FileHandler.h I have declared these methods
and in FileHandler.m i have these methods defined:
Where I want to save image tomy document dir i use save method and for retrieving images i use getImageFrom….. method.
I hope this will helps u more