Created
November 27, 2012 14:52
-
-
Save sendoa/4154628 to your computer and use it in GitHub Desktop.
AppDelegate accesible de forma global
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
#define ApplicationDelegate ((QBKAppDelegate *)[UIApplication sharedApplication].delegate) | |
@interface QBKAppDelegate : UIResponder <UIApplicationDelegate> | |
@property (strong, nonatomic) UIWindow *window; | |
@property (copy, nonatomic) NSString* unaCadena; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSString* unString = ApplicationDelegate.unaCadena; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment