I made a simple iOS View based application which would let you draw and erase on the screen. I am using an NSMutableArray to store already drawn paths. and every time i switch the control to eraser from marker or vice versa , I add the current CGPath to the array and create a new one.
and every time in drawRect I redraw the array's paths with appropriate color depending on whether it was an eraser's path or marker's path
and draw the current one as well which is being draw as the touch moves.
Now I know that this is NOT AT ALL a good solution and would eat up a lot of RAM as the array size grows. My array will already be containing redundant paths that actually go over points that are already colored with same color and would be unnecessarily be eating processor's time for doin it again and the memory as well.
Can anyone refer a better algorithm to save on the resources ?