I want to write something like this:
@interface Foo{
__strong id idArray[];
}
@end
But the compiler complains about it:
Field has incomplete type '__strong id []'.
How can I create an id array member instance under ARC? And how do I init that array? Using malloc? new[]?
I don't want to use NSArray because I'm converting a large library to ARC and that will cause a lot of work.