What is the equivalent to protected methods in objective-c? I want to define methods which only the derived classes may call/implement.
|
Taken from this link - "You can neither declare a method protected or private. Objective-C's dynamic nature makes it impossible to implement access controls for methods. (You could do it by heavily modifying the compiler or runtime, at a severe speed penalty, but for obvious reasons this is not done.)" |
|||||||||||
|
|
You can simulate protected and private access to methods by doing the following:
These protections are not, as Sachin noted, enforced at runtime (as they are in Java, for example). |
|||||||||||||||
|
|
Here is what I did to get protected methods visible to my subclasses, without requiring them to implement the methods themselves. This meant I didn't get compiler warnings in my subclass about having an incomplete implementation. SuperClassProtectedMethods.h (protocol file):
SuperClass.m: (compiler will now force you to add protected methods)
SubClass.m:
|
|||||||||
|
|
One option is to use class extension to hide methods. In
In `.m':
|
|||||
|
|
You can define the method as a private method of the parent class and can use |
|||
|
|