How to use an C array as instance variable?
- by mystify
For example I want to store this in an ivar:
CGFloat color[4] = {red, green, blue, 1.0f};
so I would put this in my header?
CGFloat color[];
?
How would I assign values to that guy later? I mean I can't change it, right?