I know about the possibility of declaring private properties on a class by putting them inside an unnamed category on that class declared in the implementation (.m
) file of that class. That's not what I want to do.
I'm dealing with a named category on a class that adds some functionality to that class. For this functionality, it would help me very much to have a private property to use in my category - so the usual way of achieving this (described above) doesn't seem to work for me. Or does it? Please enlighten me!