I want to use a C-style CGFloat
array defined in the didMoveToView
method in the touchesBegan
method. I can't seem to define it as a property because it is a CGFloat
array. Globals don't seem to work either. My array is defined like this:
CGFloat levelMapX[] = {self.frame.size.width/2 ...};
I am using SpriteKit.
You can declare a pointer to a
CGFloat
. Although arrays and pointers are not the same in C, they can often be used in a similar way.And then use it like an array:
remember to free it so you don't leak memory: