Hello! I’d like to do this:
static const int size = 5;
@interface Foo { char bar[size]; }
But the compiler complains that “instance variables must have constant size”. Do I really have to #define
the size, or is there a way to get it work with a regular constant? (I’d like the memory to be allocated statically, no malloc
.)