In your AppDelegate.h file -
@property(nonatomic,retain) NSMutableArray *sharedArray;
In AppDelegate.m
@synthesize sharedArray;
In didFinishLaunchingWithOptions -
sharedArray = [[NSMutableArray alloc]init];
Now,
make create shared object of AppDelegate like-
mainDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
and access sharedArray where you want to access using-
mainDelegate.sharedArray
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…