I want to use an array in all methods of my class. The array is initialized in the init method of the class.
But the size of the array is first known in the init method. E.g. in my init method I have:
CGPoint mVertices[size][size];
later in init I fill the array and in another method I read the values. How can I declare the array globally?