I have a base class with several child classes. I want to declare a method in the base class that all the extending classes are forced to implement. ie the base class itself has no implementation.
Is this possible with objective-c, so far I'm only finding references to overiding the implementation from the base class which is not the same thing.
Is this possible with objective-c, so far I'm only finding references to overiding the implementation from the base class which is not the same thing.