I am developing a custom camera application.What I am doing is , I am taking picture using camera and showing them in same VC bottom of the screen.
I am storing the image in local dictionaries and NSDocument directory path. If the picture is in local dictionaries it will take from local dictionary else it will take from the NSDocument directory path.
After memory warning received, I just nil the dictionary ,so it will take the images from the NSDocument directory path.
Using both will showing images in slow process.My UI got not that much good in showing images.
So I want to store the images in NSDocument directory path using NSOperation.
I don't have much knowledge about NSOperation. I have searched in google , I am just getting swift tutorials while I require help in Objective C.
So please can anyone explain the NSOperation
and NSOperationQueue
with examples?