다른 클래스 메소드 호출 sample.h#import @interface Sample : NSObject { }- (void) Test;@end sample.m #import "Sample.h" @implementation Sample - (void) Test { //메소드 구현}@end 호출하고자 하는 클래스 헤더파일에 "Sample.h" 를 임포트 한후 인스턴스를 선언한다.Sample *sample; 호출 메소드에서 다음과 같이 호출한다. sample = [[Sample alloc] init]; [sample Test];