Currently I am using NSMutableArray as a property. However I am also using opengl and for performance purposes I want to use malloc to create an a pointer to the int array and have this as the property.
How would I do this in objective c and still make sure that my memory is safe? Perhaps this is not even a safe thing to do in objective c? Mixing malloc with properties.