I create a property countryNameInitials
as NSMutableArray in AppDelegate.m interface and synthesize it. The purpose is to store global data to display in table view. In the table view controller:
#import "AppDelegate.h"
...
@implementation
#define AppDelegate [[UIApplication sharedApplication] delegate]
...
The problem is that I cannot use AppDelegate.countryNameInitials
to access the data. Any idea?