My NSMutableArray is from the NSCachesDirectory,I'm recreating/reloading the array in every VIEW. I'm displaying/preview it in UIScrollView which can be deleted in VIEW_A. In another ViewController VIEW_B, I have another preview of it, for another purpose.
What I needed is when I delete the image in VIEW_A, I will be able to determine in VIEW_B the deleted images or index. Because I'm using their indexes in VIEW_B. How can I be able to do it. I'm thinking of saving it all in NSUserDefaults but how.
Delete method:
[button removeFromSuperview];
[_buttons removeObjectAtIndex:button.tag];
[_images removeObjectAtIndex:button.tag];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"oneSlotImages%u.png", button.tag]];
[fileManager removeItemAtPath: fullPath error:NULL];
I just want to know/determine that indexes that are deleted from other view.