4-1 개요함수를 진행한 뒤에 클래스를 하는 것이 맞았는데 거꾸로 포스팅을 한 것 같다.Objective C의 함수는 C언어와 거의 유사한 구조를 가지고 있다. 4-2 함수 선언#import @interface MyClass : NSObject //instance { int myAge; NSString *myName; NSString *mySubject; } //property @property (nonatomic, assign) int myAge; @property (nonatomic, retain) NSString *myName; @property (nonatomic, retain) NSString *mySubject; //instanceMethod - (void) instanceMethod; - (..