The following code is giving me errors:
// constants.h extern NSArray const *testArray;
// constants.m NSArray const *testArray =
It's pretty easy :
#define arrayTitle [NSArray arrayWithObjects: @"hi",@"foo",nil]
put before implementation and without semicolon.
hope it helps.