Programming/iOS - ObjC
객체 지정하는 변수
Tez.Park
2010. 11. 29. 11:07
#import "RootViewController.h" // 이 뷰 컨트롤러를 참조것
@interface testAppDelegate : NSObject {
RootViewController *RVC;
UIWindow *window;
// 이 안에 testAppDelegate객체 안에서 사용될 클래스 변수를 적는곳.
}
// 여기에 RootViewController *RVC;라 하여 사용할 객체로 지정할 변수를 정의.
반응형