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.변수];
'[ 모바일 관련 ] > 아이폰(iOS)' 카테고리의 다른 글
iOS 소켓통신 참고 (0) | 2018.11.05 |
---|---|
iOS 네트워크 상태 체크 (0) | 2018.11.01 |
Autosynthesized property '변수' will use synthesized instance variable (0) | 2018.10.29 |
SubView에서 MainView 객체 컨트롤하기 (0) | 2018.10.29 |
앱에서 내부 웹뷰 말고 기본 사파리 브라우저로 띄우기 (0) | 2018.10.29 |