[Objective C] Root Class

프로그래밍/iPhone Dev 2009. 11. 20. 14:34 Posted by galad
Root Class

- Root 클래스라 함은 상속 관계에서 가장 부모 node의 클래스
- super로 메시지를 보낼 수 없다.
  -> 당연...
- class object는 root class에 정의된 instance method를 억세스할 수 있다.
(보통은 class 오브젝트는 instance method를 실행할 수 없지만 root class의 경우엔 예외이다. )