customrr-cat1.m 194 B

1234567
  1. @interface InheritingSubCat @end
  2. @interface InheritingSubCat (NonClobberingCategory) @end
  3. @implementation InheritingSubCat (NonClobberingCategory)
  4. -(id) unrelatedMethod { return self; }
  5. @end