The following code is giving me errors:
// constants.h extern NSArray const *testArray;
// constants.m NSArray const *testArray =
As for me, it is more convenient to use the following implementation for an array of constants
static NSString * kHeaderTitles [3] = {@ "ACCOUNT DETAILS", @ "SOCIAL NETWORK", @ "SETTINGS"}; static int kNumbers[3] = {1, 2, 3};