Often times I initialize my model class variables in my AppDelegate so they can be used by different ViewControllers without passing their instance across class files. Howe
Put this method in your AppDelegate class
+ (AppDelegate *)get { return (AppDelegate *) [[UIApplication sharedApplication] delegate]; }
And when you need to call your AppDelegate use:
[AppDelegate get];