I create an NSMutableArray and fill it with a bunch coordinates.
I assign the array to the property of another array like this:
draw.shapeCoords = [shapes shapeCoords];
Where draw is a class and shapes is a class and shapeCoords are properties in both of them.
When I get to my drawRect method, the array of coordinates is empty. I'm did a little research and found that the @synthesize does not fully instantiate an NSMutableArray, how then in my draw class (which implements UIView) do I initialize the array? Basically, I need access to the data in the array, how do I get it?