Simple Objective C initialization
As an assembly language and C programmer new to Objective C, I occasionally need an array of constants. This is easily created in C:
int list[5] = {1,2,3,4,5};
Is there a simple equivalent in Objective C?
Thanks for any help.
|