본문으로 바로가기


AppDelegate.h


@property (nonatomic, assign) NSString *변수;





Sample.m (전달)


#import "AppDelegate.h"


AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

                appDelegate.변수 = 전달할 값;




Sample2.m (받기)


#import "AppDelegate.h"


AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

받을 변수 = [[NSString alloc] initWithFormat:@"%@", appDelegate.변수];