Wednesday, March 2, 2016

Code Snippet: AppDelegate Constant

Useful to have to simplify your code if you use many appdelegates references. Of course, you need to import AppDelegate header in each of the main file you want to use this constant.


#import "AppDelegate.h"

#define MY_APPDELEGATE ((AppDelegate*)[UIApplication sharedApplication].delegate)

No comments:

Post a Comment