클래스 구조 Objective-C는 클래스 생성시 크게 선언부와 구현부으로 나뉜다 선언부 @interface ~ @end 주로 .h 파일에 구현 @interface ChildClass: ParentClass { // ------ 멤버 변수 선언 int count; NSString *myName; } // ------ 메소드 선언 /* - : Instance Method + : Class Method */ - (id)initWithString: (NSString *)aName; + (ChildClass)createChildClassWithString:(NSString*)aName; @end 구현부 @implementation ~ @end 주로 .m 파일에 구현 @implementation ChildClas..