One of my classes MyClass
is very big and I want to split it into several categories MyClass(A)
, MyClass(B)
, ... . My problem is that some of the methods of MyClass+A
make use of a @property
defined in the class extension MyClass()
.
Can I access it from the category, and if yes: how?
If no, is there another way to proceed?
Can I access it from the category, and if yes: how?
Yes. Either:
Option 1 is the better solution.