Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the equivalent to protected methods in objective-c? I want to define methods which only the derived classes may call/implement.

share|improve this question

5 Answers

up vote 18 down vote accepted

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.)"

share|improve this answer
2  
I found this site, otierney.net/objective-c.html#access ... how do you think about it ? – arufian Mar 5 '12 at 8:25
that site shows @protected variables not methods. – Lee Probert Oct 11 '12 at 14:09
WHile technically you can't, you can emulate private variables. – Sharen Eayrs Dec 3 '12 at 5:03
@arufian Tons of Love from INDIA.. for such a beautiful link :) – RDC Apr 16 at 5:31

You can simulate protected and private access to methods by doing the following:

  • Declare your private methods in a class continuation (i.e. a unnamed category declared near the top of the class' .m file)
  • Declare your protected methods in a Subclass header – Apple uses this pattern with respect to UIGestureRecognizer (see documentation and reference to UIGestureRecognizerSubclass.h)

These protections are not, as Sachin noted, enforced at runtime (as they are in Java, for example).

share|improve this answer
9  
+1, but I want to emphasize simulate. – Richard Jul 20 '11 at 21:59
About the UIGestureRecognizer-like solution: The problem is that if some code imports the subclass it will also import the Subclass header and it will therefore have access to the "protected" methods. Is there a way around that? – yonix Feb 20 '12 at 10:44
3  
Hi yonix, the import for the subclass header would be done inside of the .m file not inside of the .h file, so importing the subclass would't import these protected methods. – Brian Westphal Feb 22 '12 at 19:05
Cool Suggestion Brian, thanks a ton !! To the original poster, for declared properties, just ensure that you use @dynamic in the subclass's class extension (unnamed category) implementation, so that at runtime, the parent class's implementation would be used – user1046037 Feb 28 '12 at 12:49
How do I see UIGestureRecognizerSubclass.h? – Sharen Eayrs Dec 3 '12 at 5:07
show 1 more comment

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):

@protocol SuperClassProtectedMethods <NSObject>
- (void) protectMethod:(NSObject *)foo;
@end

@interface SuperClass (ProtectedMethods) < SuperClassProtectedMethods >
@end

SuperClass.m: (compiler will now force you to add protected methods)

#import "SuperClassProtectedMethods.h"
@implementation SuperClass
- (void) protectedMethod:(NSObject *)foo {}
@end

SubClass.m:

#import "SuperClassProtectedMethods.h"
// Subclass can now call the protected methods, but no external classes importing .h files will be able to see the protected methods.
share|improve this answer
The meaning of protected is it is not able to be called externally. You still can call any methods defined in the class regardless of they are externally visible or not. – Eonil Nov 19 '12 at 14:57
Yes, I understand this. This method works for the human brain, not actual compiled code. But Objective-C doesn't allow that (not being able to call externally). You can always performSelector on it. – Michael Kernahan Nov 19 '12 at 15:07
You also can do [(id)obj hiddenMethod]. Accurately saying, protected method is not supported in Objective-C. – Eonil Nov 19 '12 at 15:20
The problem with this is that your so called protected classes cannot ad properties. If you do not need properties, then anyone is well aware that you can simply add protected categories. – Sharen Eayrs Dec 3 '12 at 8:37

One option is to use class extension to hide methods.

In .h:

@interface SomeAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end

In `.m':

@interface SomeAppDelegate()
- (void)localMethod;
@end

@implementation SomeAppDelegate

@synthesize window = _window;

- (void)localMethod
{
}

@end
share|improve this answer
I don't think you even need the @interface declaration in the .m file. You can just declare a function and use it and it will treat is as private. – Russ Aug 20 '12 at 17:04
Note that this is true only with the recent updates in Objective C. Prior to that, you had to declare the method in an interface otherwise you'd at least get a warning. – Guillaume Laurent Aug 23 '12 at 7:36

You can define the method as a private method of the parent class and can use [super performSelector:@selector(privateMethod)]; in the child class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.